JSFiddle - React, Tailwind, and code Playground
by Blake Plumb
HTML
<p style="text-decoration: underline">Test test test</p>
<a href="#">Test test test</a>
<h3 style="text-decoration: underline">Test test test</h3>
<ul>
<li style="text-decoration: underline">test</li>
</ul>
<table>
<tr>
<td style="text-decoration: underline">test</td>
</tr>
</table>
<p>test <span style="text-decoration: underline">test</span> test</p>
CSS
*{
text-decoration: none !important;
}
a{
text-decoration: underline !important;
}