我span
在td
. td
有一个带有 CSS 的类来设置to text-decoration
,underline
而span
设置text-decoration
to none
。我希望里面的文字span
没有下划线,但由于某种原因它是。为什么?
.u {
text-decoration: underline;
}
.no-u {
text-decoration: none !important;
}
<table>
<tr>
<td class="u">
<span class="no-u" style="text-decoration: none !important;">My Text</span>
</td>
</tr>
</table>