JSFiddle - React, Tailwind, and code Playground
by praveenti
HTML
<table class="table rep-cal-table">
<thead>
<tr>
<th>Monday</th>
</tr>
</thead>
<tbody>
<td>
<span class="label label-default label-cal"> Test </span>
</td>
</tbody>
</table>
CSS
.label-cal {
width:50%;
display:block;
margin:.3em;
padding: .3em;
border:1px #f00 solid;
}
table{
border:1px #f00 solid;
width:400px;
}