Bootstrap’s grid system uses a series of containers, rows, and columns to layout and align content. It’s built with flexbox and is fully responsive.
I am trying to create a 3 grid layout using bootstrap. So far here's my code:
.box-logo-padding a {
display: inline-block;
margin: 0px auto;
}
@media only screen and (min-width: 360px) and (max-width: 1199px) {
.box-logo-padding a {
display: flex;
margin: 0px !important;
align-items: flex-start !important;
justify-content: flex-start !important;
text-align: left !important;
}
}
<div class="experience-section section-padding bg-gray" id="experience">
<div class="container container-wide">
<div class="row">
<div class="col-lg-5 col-sm-12" data-aos="fade-right">
<div class="sidebar">
<div class="section-title-one sidebar__inner">
<div class="section-title-one-inner">
<p>Lorem ipsum </p>
<div class="row align-items-center text-center mt-20">
<div class="col-lg-4 col-sm-12 box-logo-padding">
<a href="#" target="_blank" id="item1"></a>
</div>
<div class="col-lg-4 col-sm-12 box-logo-padding">
<a href="#" target="_blank" id="item2"></a>
</div>
<div class="col-lg-4 col-sm-12 box-logo-padding">
<a href="#" target="_blank" id="item3"></a>
</div>
<div class="col-lg-4 col-sm-12 box-logo-padding">
<a href="#" target="_blank" id="item4"></a>
</div>
<div class="col-lg-4 col-sm-12 box-logo-padding">
<a href="#" target="_blank" id="item5"></a>
</div>
<div class="col-lg-4 col-sm-12 box-logo-padding">
<a href="#" target="_blank" id="item6"></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
This returns this:
Instead of this:
As you can see instead of 3 grid layout, its showing 100% width on large viewport. The thing here is that on large viewport it should show 3 grid column layout and then on medium screen it should show two grid layout and one grid layout on small. Any idea what's causing this and how to fix it?