I have done my research and tried numerous solutions, but I still can't get two images and a text to display in one line. The problem is when I shrink the window size, the images end up above and below the text instead of beside it. I have included the code snippet below along with a fiddle:
<div class="row">
<div class="col-md-4">
<img src="image.jpg" class="images">
</div>
<div class="col-md-4">
<div class="text">
<h2 class="featurette-heading">What's Included with HTML?</h2>
<p class="lead">Tags to make words. And tons of CSS properties to style your page:</p>
</div>
</div>
<div class="col-md-4">
<img src="image.jpg" alt="Chrome Browser" class="images"></div>
</div>
Does anyone know how I can make the images resize based on the window size so they all appear in a single line with the text?
I've experimented with width:100%;height auto;
, max-width:100%;
, and various other combinations to make them responsive, but nothing has worked.
Any help would be greatly appreciated!