Image Maximum Width
Image Maximum Width
As a general rule, don't forget to set max-width: 100%
for all images. This can be added to your CSS reset rules.
img {
max-width: 100%;
object-fit: cover;
}
About 52 wordsLess than 1 minute
2023-08-7
As a general rule, don't forget to set max-width: 100%
for all images. This can be added to your CSS reset rules.
img {
max-width: 100%;
object-fit: cover;
}