@font-face定义字体名字后,后面引用的时候出错,不过可以正常显示

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title></title>
    <style>
        @font-face {
            font-family: "icomoon";
            src:url('fonts/icomoon.eot');
            src:url('fonts/icomoon.eot?#iefix') format('embedded-opentype'),
            url('fonts/icomoon.svg#icomoon') format('svg'),
            url('fonts/icomoon.woff') format('woff'),
            url('fonts/icomoon.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
        }
        span:before{
            font-family:icomoon;/*这里有问题*/
            
            font-size: 30px;
            -webkit-font-smoothing: antialiased;
            content: "\e905";
            color: violet;
        }
    </style>
</head>
<body>
<div>
    <span></span>hahaha
</div>
</body>
</h

clipboard.png

阅读 4.7k
1 个回答
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题