Being new to html and css, I am currently working with 4 images that need to be arranged a certain way. My issue is that the pictures are stacking on top of each other instead of displaying as desired.
Check out this image for reference
To solve this problem, I used the following code:
<div class="image123">
<div class="imgContainer">
<img src="pizza.jpg" height="200" width="75%"/>
<p>This is image 1</p>
</div>
<div class="imgContainer">
<img class="middle-img" src="tacos.jpg"/ height="200" width="75%"/>
<p>This is image 2</p>
</div>
<div class="imgContainer">
<img src="philly.jpg"/ height="200" width="75%"/>
<p>This is image 3</p>
</div>
</div>