JSFiddle - React, Tailwind, and code Playground
by MarmiK
HTML
<TABLE BORDER=2 CELLPADDING=4 class="tbl">
<TR>
<TH BGCOLOR="#99CCFF">Production</TH>
<TD>Raha Mutisya</TD>
<TD>Shalom Buraka</TD>
<TD>Brandy Davis</TD>
<TD>Claire Horne</TD>
<TD>Bruce Eckel</TD>
<TD>Danny Zeman</TD>
</TR>
</TABLE>
CSS
table.tbl{
display:table;
}
table.tbl tr td{
display:table-row;
border:1px solid #000;
}