I'm facing a simple issue with my code. I can't seem to remove the white gap between each tag, particularly noticeable between the h3 and h4 tags with background colors. How can I eliminate this space?
.realEstatePricing h3 {
Background: lightblue;
height: 40px;
}
.realEstatePricing h4 {
Background: lightgrey;
}
<section class="realEstatePricing">
<div class="container">
<div class="row">
<div class="col-sm-4">
<h3 class="text-center">Photo Package</h3>
<h4 class="text-center">$99</h4>
<p>description 1</p>
<p>description 1</p>
<p>description 1</p>
<p>description 1</p>
</div>
</div>
</div>
</section>