I have 3 images stacked horizontally (each image is next ot the other). my goal is to keep those images stacked horizontally when i scale down the page size. i would like the pictures to automatically resize down without breaking it to the next line. i don't want to use percents (%) for the size of the images. I don't want to set the size of the images at all.
When I am using bootstrap and I scale down the page, when the page size become smaller then the pictures size, then the image on the right breaks to new line, the same thing happens for the second image, until all the images stacked vertically. on this point, when I scale down the page even more I get exactly what I wanted - the pictures are resizing according to the page size.
please help me to get this behavior without breaking the pictures to new lines.
this is my html:
<body>
<img src="img/test.png" />
<img src="img/test.png" />
<img src="img/test.png" />
</body>
Thanks...