I want to color the text decoration. I got a tutorial from w3schools
And tried this
text-decoration: underline; text-decoration-color: #ffffdffffd;
Update: it works on Safari & Safari iOS with the -webkit- prefix!
-webkit-
p { text-decoration: underline; text-decoration-color: red; -webkit-text-decoration-color: red; }
test