我的链接设置在“font-weight 300”和“text-transform underline”中。我通过@import 使用谷歌字体“Roboto”。在 Chrome 和 Opera 中,下划线像 font-weight 400 一样粗。FF、Edge 和 IE 没有这个问题。
HTML:
<p><a href="index.html">Zurück</a></p>
SCSS:
@import url('https://fonts.googleapis.com/css?family=Roboto:300');
@mixin font-family-sans-serif(){
font-family: 'Roboto', sans-serif;
font-weight: 300;
}
a,
a:hover,
a:link,
a:visited,
a:active,
a:focus,
button{
text-decoration: none;
&:hover, &:focus{
text-decoration: underline;
}
}
悬停时FF中没有问题:
悬停时Chrome中的问题:
有人知道如何解决这个问题吗?