How to resize image the way I want, responsively

Hi,

Try 100% for the height too, and see if that fits the fluid height better:

img.pic{
  width: 100%; /* of the grid area */
  height: 100%; /* of the grid area */
  border: 3px solid blue;
  object-fit: cover;
  box-sizing: border-box; /* added to keep the total size */
}
1 Like