我在firefox中的字体图标有问题,请检查图片
CSS:
[class^="icon-"]::before, [class*=" icon-"]::before {
font-family: "untitled-font-1" !important;
font-style: normal !important;
font-variant: normal !important;
font-weight: normal !important;
line-height: 1;
text-transform: none !important;
}
firefox的顶部栏和Chrome的底部栏,以及这里的Live Link
发布于 2015-10-07 17:35:51
如果你还提供了相关的html代码来尝试和测试,这会更容易回答我,但你有没有考虑过更多浏览器/屏幕不可知的测量类型,比如vh
或em
?示例:
[class^="icon-"]::before, [class*=" icon-"]::before {
line-height: 1vh;
}
如果这仍然不起作用,您可以随时使用它们的margin-bottom
或padding-bottom
属性。
https://stackoverflow.com/questions/32954967
复制相似问题