Using the new Bootstrap 4 alpha 6, I am attempting to showcase three images side by side.
<div class="row">
<div class="col-md-4 text">
<p>including some descriptive text.</p>
</div>
<div class="col-md-8 screens">
<img class="img-fluid first" src="{{asset('/images/project/screen-1.png')}}" alt="First screen">
<img class="img-fluid main" src="{{asset('/images/project/screen-main.png')}}" alt="Main screen">
<img class="img-fluid second" src="{{asset('/images/project/screen-2.png')}}" alt="Second screen">
</div>
</div>
I've experimented with changing display options for .screens and the images themselves, but have run out of ideas.