Answers for "how to auto fit image in div"

0

how to auto fit image in div

<img style='height: 100%; width: 100%; object-fit: contain'/>
Posted by: Guest on January-10-2022
0

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
0

how to auto fit image in div

Portrait Div
<div class="portrait">
    <img src="http://i.stack.imgur.com/xkF9Q.jpg">
</div>

Landscape Div
<div class="landscape">
    <img src="http://i.stack.imgur.com/xkF9Q.jpg">
</div>

Square Div
<div class="square">
    <img src="http://i.stack.imgur.com/xkF9Q.jpg">
</div>
 Run code snippet
Posted by: Guest on January-10-2022

Code answers related to "how to auto fit image in div"

Browse Popular Code Answers by Language