Answers for "css grid that adjust to size om images"

CSS
1

fit image in grid css

.photo > img {
  object-fit: cover;
  width: 100%;
  max-height: 100%;
}
Posted by: Guest on April-12-2021
1

css grid auto resize on mobile

// Fit as many columns as you can in one row
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
Posted by: Guest on June-28-2021

Browse Popular Code Answers by Language