How do I decrease the size of a font-awesome icon?

前端 未结 5 529
谎友^
谎友^ 2021-02-01 14:06

What is the best way to decrease the size of a font awesome icon. There is a fa-3x, etc... to increase the size. Is there a class to decrease the size?

5条回答
  •  时光取名叫无心
    2021-02-01 14:20

    Font-Awesome icon size modification:

    1. "font-size" property in "style" attribute:

       
      
    2. "font-size" property in CSS stylesheet (like the accepted answer shows)

       .fa {
           font-size: 12px;
       }
      
    3. HTML tags

       
           
       
      
    4. Using Fontawesome classes so that the icons take a size relative to their parent elements:

       
      
       
      

提交回复
热议问题