I'm trying to get rid of the "border-top: 1px solid #dddddd;" for a specific table on my Bootstrap site.
Making the change using inline styling works as expected:
<td style="border-top:none; font-weight:bold;">
However, when I try to add this into the bootstrap.css file, the font-weight is applied, but the border-top is not:
<td class="notop">
CSS (have tried with '!important' as well):
.notop {
border-top:none;
font-weight:bold;
}
Any suggestions as to why this would work inline, but not via CSS?