When I have the following code:
.kitty {
height: 20vw;
width: 20vw;
}
<div class="container-fluid">
<div class="row">
<div class="content col-lg-12">
<img src="http://www.downesvets.co.uk/wp-content/uploads/2015/07/kitten-package1.png" alt="foo" class="kitty">
textextext <br> textextext
<img src="http://www.downesvets.co.uk/wp-content/uploads/2015/07/kitten-package1.png" alt="foo" class="kitty">
</div>
</div>
</div>
What I want is that the text is that the <br> element applies to the text but that the images are still in one line. like this:
Which HTML or CSS do I have to use in order to achieve this?
