카테고리 없음

아이콘 크기 변경은 font-size

지금당장 2018. 7. 2. 15:48

아이콘 크기 변경은 font-size




아이콘 크기를 변경하려고

height width를 아무리 사용해도

안되더군요.


해답은 font-size를 적용해야 됩니다.



  <style>


.testicon1{

  font-size: 200px

}

.testicon2{

  font-size: 300px

}


  </style>


</head>

<body>

  <i class="fab fa-accessible-icon testicon1"></i>

  <i class="fas fa-ambulance testicon2"></i>

</body>

</html>


아이콘에 클래스 testicon1, testicon2를 적용하고

스타일에 font-size에 200, 300px를 적용하니

크기가 커졌습니다.