My issue involves a simple script that includes two responsive images. When the window is minimized, the images adjust accordingly.
However, when I place both images within the same div like this:
<div class="wrapper">
<div class="block">
<img
src=
"https://cdn.pixabay.com/photo/2015/04/23/22/00/tree-736885__340.jpg"
></img>
<img
src=
"https://cdn.pixabay.com/photo/2015/04/23/22/00/tree-736885__340.jpg"
></img>
</div>
</div>
I am not achieving the desired effect. Can you help me understand why?