font-weight 导致iconfont显示有问题和糊

font-weight导致iconfont显示有问题

偶然间在h3下面写了一个icon,由于icon继承了h3的font-weight,导致icon看起来糊糊的。
仔细排查先原来是h3的font-wight导致的

//style
 h3 {
        font-style: normal;
        font-weight: normal;
      }
//html
 <h3><span class="iconfont">&#xe787;</span>有font-wight</h3>
    <div><span class="iconfont">&#xe787;</span>无font-wight</div>

结果:

原文地址:https://www.cnblogs.com/heihei-haha/p/14585419.html