Is there a way to remove the whitespace above and below the headings of h1-h6? Margin and padding were not working.
Check this codepen.
Thank you!
<div class="background">
<h1>This is H1!</h1>
</div>
<div class="background">
<h2>This is H2!</h2>
</div>
<div class="background">
<h3>This is H3!</h3>
</div>
<div class="background">
<h4>This is H4!</h4>
</div>
<div class="background">
<h5>This is H5!</h5>
</div>
<div class="background">
<h6>This is H6!</h6>
</div>
the css is
.background {
background: orange;
margin-bottom: 10px;
}
h1 {
margin: 0;
padding: 0;
}