JSFiddle - React, Tailwind, and code Playground

HTML

<table border=1>
    <tr class="highlight">
        <td><span>hello</span></td>
        <td><a href="#">world</a></td>
    </tr>
    <tr>
        <td>foo</td>
        <td>bar</td>
    </tr>
</table>

CSS

.highlight td span { text-decoration:line-through; }
.highlight td a { text-decoration:none; }