-1
I want to leave the images right next to each other with the same size of margins and columns etc. How do I?
.w3grayscale {
margin-bottom: 120px;
width: 200px;
margin: 10px;
position: relative;
text-align: center;
display: flex;
justify-content: center;
display: flex;
}
<div class="w3grayscale">
<div class="w3-half">
<img src="recepcao1.jpg" style="width:100%">
<img src="sala1.jpg" style="width:100%">
<img src="sala2.jpg" style="width:100%">
<img src="sala3.jpg" style="width:100%">
<img src="sala4.jpg" style="width:100%">
<img src="sala1.webp" style="width:100%">
</div>
<div class="w3-half">
<img src="recepcao2.jpg" style="width:00%">
<img src="sala4.jpg" style="width:100%">
<img src="sala5.jpg" style="width:100%">
<img src="sala1.jpg" style="width:100%">
<img src="sala2.jpg" style="width:100%">
<img src="sala3.jpg" style="width:100%">
</div>
<!-- End Page Content -->
</div>
Have you noticed that the first image of the second div is not showing up, and this is misaligning the image of the second column? That’s your problem right there??
– hugocsl