Nested table styling
Created by: schotime
If I have
<table class="table">
<tr>
<td>
<table><tr><td></td></tr></table>
</td>
</tr>
</table>
the inner table gets the default styles applied to a td, because the rules
.table thead > tr > td
cover both tables. Should it not be.
.table > thead > tr > td