Image size exceeds container limit
P粉083785014
2023-08-14 20:13:56
<p>I've posted the following screenshot showing one image exceeding the limits of its container, while the other images are stacked correctly. I haven't done anything in CSS yet. enter image description here</p>
<p>I specifically tried using max-width for that particular image, but as soon as I display the div containing all the images as a grid, it goes over the limit. </p>
You can try using the style
width: 100%
in yourimg
tag. like this:This will force your image to be as wide as the container.