Answers for "css crop images"

CSS
0

style image so it crops

.alligator-turtle {
  object-fit: cover;
  object-position: 100% 0;

  width: 300px;
  height: 337px;
}
Posted by: Guest on July-15-2020
3

how to crop images in css

img{
	object-fit: cover;
}
Posted by: Guest on December-23-2020

Browse Popular Code Answers by Language