Answers for "fit image to parent container"

CSS
1

how to make img cover parent div

img {
	object-fit: cover;
}
Posted by: Guest on February-27-2021
1

how to auto fit image in div

img {
    max-width: 100%;
    max-height: 100%;
}

.portrait {
    height: 80px;
    width: 30px;
}

.landscape {
    height: 30px;
    width: 80px;
}

.square {
    height: 75px;
    width: 75px;
}
Posted by: Guest on January-10-2022

Code answers related to "fit image to parent container"

Browse Popular Code Answers by Language