I have been attempting to vertically align the image and text without success using the "align-items" property. My website is based on a Bootstrap template. After inspecting the section, I noticed it says "display: block." Could that be causing the issue? Here is a snippet of my code:
html;
<section id="about" class="about">
<div class="container">
<div class="row">
<div class="col-lg-6">
<img src="./assets/img/about-us-img.avif" class="img-fluid" alt="about">
</div>
<div class="col-lg-6">
<h3>About Us</h3>
<p>
About text...
</p>
</div>
</div>
</div>
</section>
css;
.about h3 {
font-weight: 600;
font-size: 32px;
margin-bottom: 24px;
}
#about .container {
align-items: center;
}