0
I have a very boring problem. I’m creating a table and I’m putting a 5% padding on it. E When I go in the browser to check if this is right, the attribute is in the element, but it is not applied. But when I open the Inspect, and I clear and mark this padding, it works. I wonder what’s wrong ?
css
.item_header_no {
font-size: 1.2em;
padding: 5%;
background-color: black;
color: white;
}
html
<tr>
<td class="item_header_no">Disciplina</td>
<td class="item_header_no">AC</td>
<td class="item_header_no">AI</td>
<td class="item_header_no">AS</td>
<td class="item_header_no">MF</td>
</tr>
good to know, http://caniuse.com/#search=vh
– user60252