我有这个CSS:



    <style>
         .icons:before {
            content: "\e034";
            color: #00bc9b;
            font-size: 16px;
            margin-top: -1px;
            margin-left: -1px
        }
    </style>

    <span class="icons"> </span>





html - 为什么“\e034”出现在CSS中但没有创建刻度图标?-LMLPHP

上面的代码应该显示一个这样的图标,但是它没有显示该图标。

最佳答案

您在使用FontAwesome吗???如果是这样,则缺少font-family: FontAwesome,请将其放入代码中:

     .icons:before {
        content: "\e034";
        color: #00bc9b;
        font-size: 16px;
        margin-top: -1px;
        margin-left: -1px;
        font-family: FontAwesome;
    }


编辑:确保在项目下设置了字体

关于html - 为什么“\e034”出现在CSS中但没有创建刻度图标?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39471248/

10-09 15:00