JSFiddle - React, Tailwind, and code Playground

by Michael Baas

HTML

<table>
<tr><td>abc</td><td class="first exclude">def</td><td>ghi</td></tr>
</table>

CSS

.first {
  border: 1px solid green;
}
.exclude {
  	text-decoration: line-through;
}