I have a span
tag inside a td
. The td
has a class with CSS to set the text-decoration
to underline
, while the span
sets the text-decoration
to none
. I expect the text inside the span
to not be underlined, but for some reason it is. Why?
.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>