I have a div with the given width and want to fit N number of images next to each other.
The issue is that I'm getting the HTML from a third party. Therefore I can only apply CSS stuff to it.
.row {
border: 5px solid green;
width: 500px;
}
<div class="row">
<img src="https://picsum.photos/200/300" alt="Snow">
<img src="https://picsum.photos/200/300" alt="Forest">
<img src="https://picsum.photos/200/300" alt="Mountains">
</div>
How can I get that to work ?