似乎文字装饰颜色与移动Safari不兼容。
是否有解决方法来更改文本下划线的颜色?
我尝试了以下方法,但它没有工作:
.underline {
border-bottom: 2px !important;
border-bottom-color: yellow !important;
text-decoration: none !important;
}
答案 0 :(得分:1)
只需使用border-bottom
属性进行链接。
border-bottom: 2px solid yellow;
或将border-bottom: 2px;
更改为border-bottom-width: 2px;
演示fiddle