iOS Safari 中是否有更改文本下划线颜色的技巧

Is there a hack to change the color of text underline in iOS Safari

text-decoration-color 似乎与移动版 Safari 不兼容。

是否有更改文本下划线颜色的解决方法?

我试过以下方法,但没有用:

.underline {
    border-bottom: 2px !important;
    border-bottom-color: yellow !important;
    text-decoration: none !important; 
}

只需使用 border-bottom 属性 即可 link。

border-bottom: 2px solid yellow; 或将 border-bottom: 2px; 更改为 border-bottom-width: 2px;

演示 fiddle