Make Font Awesome icons in a circle?

前端 未结 14 1340
情书的邮戳
情书的邮戳 2020-12-02 04:38

I am using font awesome on some project but I have some things that I want to do with font awesome icons, I can easily call an icon like this:



        
14条回答
  •  一个人的身影
    2020-12-02 05:34

    This is the best and most precise solution I've found so far.

    CSS:

    .social .fa {
          margin-right: 1rem;
          border: 2px #fff solid;
          border-radius: 50%;
          height: 20px;
          width: 20px;
          line-height: 20px;
          text-align: center;
          padding: 0.5rem;
        }
    

提交回复
热议问题