之前在使用4.7的过程中,一切正常,最近更新了5.11.2, 发现有部分字体显示了 小方块,不能正常显示了。经过一顿排查,发现,新版的字体对font-weight有限制。
.home i {
font-style: normal;
/* font-weight: 400; */
}
<i class="fas fa-home"></i>
如果遇到上述问题,可以尝试删除 font-weight 的全局定义,这样 font-awesome字体就能正常显示了。
LP小透明 2020年1月8日 11:20:10
.home i {
font-style: normal;
/* font-weight: 400; */
}
<i class="fas fa-home"></i>