css - Make margin effect on elements padding? -
i have element bottom margin , below element padding. margin effective element's text, not padding. how can make effective element including padding?
p { margin-bottom: 50px; } { padding: 40px; background: green; } <p class="first">first</p> <a href="#">link</a>
inline elements not affected vertical margings. make anchor tag display: inline-block
Comments
Post a Comment