Why doesn’t padding-top work? The height of the div is set.
HTML:
<div class="menu">
<a href="#">APIE MUS</a>
<a href="#">REKLAMA</a>
<a href="#">PARTNERIAI</a>
</div>
CSS:
.menu {
width: 300px;
height: 30px;
background: red;
}
.menu a {
padding-top: 10px;
}
Your example (with margin) does not work because you can’t apply margin to inline elements like
a, span, b.Take a look:
To fix your issue:
Just add
display:inline-block;So this will fix your issue: