JSFiddle - React, Tailwind, and code Playground

HTML

<table>
<tr class="table-item">
<td>Text</td>
<td><a href="#">Delete item</a></td>
</tr>
</table>

CSS

.table-item td {
text-decoration: line-through;
}
.table-item a {
text-decoration: none;
display: inline-block;
}