image css crop code example
Example 1: style image so it crops
.alligator-turtle {
object-fit: cover;
object-position: 100% 0;
width: 300px;
height: 337px;
}
Example 2: crop image css
.img {
object-fit: contain;
}
.alligator-turtle {
object-fit: cover;
object-position: 100% 0;
width: 300px;
height: 337px;
}
.img {
object-fit: contain;
}