How to set the CSS content property with a Google Material Icon?

前端 未结 5 715
礼貌的吻别
礼貌的吻别 2020-12-29 09:27

How can I insert the Google Material Icon \"chevron icon right\" (https://design.google.com/icons/#ic_chevron_right) in the following CSS content property:

.         


        
5条回答
  •  有刺的猬
    2020-12-29 09:52

    Try this.

    .bullet li a:before {
        font-family: FontAwesome;
        content: "\f054";
    }
    

    You can refer here for content values

提交回复
热议问题