给定以下html:
<a href="#"><span data-icon="✪"></span>A Link</a>
text-decoration是否可以在悬停时更改(无)?color意志改变,意志不变text-decoration。
CSS:
a { text-decoration: none; }
a:hover{ text-decoration: underline; }
a:hover [data-icon]:before{
/*Doesn't work*/
text-decoration: none;
/*Works*/
color: red;
}