I have a group of images and I want to put them on the right in a block. It's what I tried:
<div class="row" >
<div class="float-right">
<img src="1.png"/>
<img src="2.jpg"/>
<img src="3.jpg"/>
<img src="4.png"/>
</div>
</div>
But the images are still all on the left. If I remove "row" or replace it with something like d-block
they go to the right, however the division overlaps existing ones!!