I need help, my css override for my table-bordered table seems not working. I'm trying to create a table something like this:
<table class="table table-bordered">
<tbody>
<tr>
<td>Collection 1</td>
<td>5</td>
</tr>
<tr>
<td>Collection 2</td>
<td>5</td>
</tr>
<tr>
<td colspan="2" class="no-line">-----------</td>
</tr>
<tr>
<td>Total </td>
<td>10</td>
</tr>
</tbody>
</table>
In the css, I tried all possible combinations just to check which will work but still it does not remove the border.
.table-bordered > tbody > tr > td.no-line {
border:none !important;
border-right: none !important;
border-left: none !important;
border-top: none !important;
border-right-style: none !important;
border-left-style: none !important;
}
Please help, Thanks a lot! :)