JSFiddle - React, Tailwind, and code Playground
by David Hughes
HTML
<table>
<tr>
<td>A TD</td>
</tr>
<tr>
<td>2nd TD</td>
</tr>
</table>
CSS
table {
border: 1px solid #000;
width: 250px;
}
td {
background: red;
}
by David Hughes
<table>
<tr>
<td>A TD</td>
</tr>
<tr>
<td>2nd TD</td>
</tr>
</table>
table {
border: 1px solid #000;
width: 250px;
}
td {
background: red;
}