padding virker ikke
Jeg kan ikke få min padding til at virke :(Her er et udsnit af min CSS fil:
--------------------------
td.cell {
padding-top: 1px;
padding-bottom: 2px;
padding-left: 6px;
padding-right: 6px;
}
.tab_bottom {
background:#edf2fc;
border:1px solid #b3cdfc;
border-top:0px;
padding-bottom:10px;
}
Min padding i tab_bottom virker ikke og den bruger den satte padding fra cell
<td class="cell tab_bottom">
- men hvis jeg gør således virker det godt nok
<td class="cell tab_bottom" style="padding-bottom:10px">
