Make Font Awesome icons in a circle?

前端 未结 14 1354
情书的邮戳
情书的邮戳 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:36

    You can also do this. I wanted to add a circle around my icomoon icons. Here is the code.

    span {
    font-size: 54px;
    border-radius: 50%;
    border: 10px solid rgb(205, 209, 215);
    padding: 30px;
    }
    

提交回复
热议问题