I am struggling to align three boxes horizontally on my website, as they are currently stacking vertically. I have implemented Twitter Boostrap's 'row' class in an attempt to achieve this layout.
HTML:
.img-box-kai {
width: 300px;
height: 450px;
border: 3px solid red;
}
.img-box-lucas {
width: 300px;
height: 450px;
border: 3px solid red;
}
.img-box-bryant {
width: 300px;
height: 450px;
border: 3px solid red;
}
<div class="container">
<div class="row">
<div class="img-box-kai">Rectangle Test</div>
<div class="img-box-lucas">Rectangle Test</div>
<div class="img-box-bryant">Rectangle Test</div>
</div>
</div>
Here is a visual representation of the current alignment: image