Looking to create three columns of equal height in Bootstrap, with no gaps between them? Check out this screenshot for reference:
Screenshot
Below is the code snippet you can use:
<div class="container">
<div class="row mt-4">
<div class="col-12 col-md-6 col-xl-4 service mt-4">
<div class="p-3">
<div class="icon">
<i class="fa-solid fa-laptop-code fs-1"></i>
</div>
<h5 class="mb-4 mt-2">Web Development</h5>
<p>I offer customized Web Development services.</p>
</div>
</div>
<div class="col-12 col-md-6 col-xl-4 service mt-4">
<div class="p-3">
<div class="icon">
<i class="fa-solid fa-palette fs-1"></i>
</div>
<h5 class="mb-4 mt-2">Web Design</h5>
<p>Get top-notch Modern Web App Designs for your site.</p>
</div>
</div>
<div class="col-12 col-md-6 col-xl-4 service mt-4">
<div class="p-3">
<div class="icon">
<i class="fa-solid fa-mobile-screen-button fs-1"></i>
</div>
<h5 class="mb-4 mt-2">Responsive Design</h5>
<p>Achieve full Responsive Design with Bootstrap or Media Queries.</p>
</div>
</div>
</div>
</div>
For some custom styling, use this CSS snippet:
.p-3{
text-align: center;
background: #202020;
border-radius: 10px;
}