“wie man automatisch ein Bild in Div fit fit fit” Code-Antworten

wie man automatisch ein Bild in Div fit fit fit

<img style='height: 100%; width: 100%; object-fit: contain'/>
Xerothermic Xenomorph

wie man automatisch ein Bild in Div fit fit fit

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

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

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

.square {
    height: 75px;
    width: 75px;
}
Xerothermic Xenomorph

wie man automatisch ein Bild in Div fit fit fit

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
Xerothermic Xenomorph

Ähnliche Antworten wie “wie man automatisch ein Bild in Div fit fit fit”

Fragen ähnlich wie “wie man automatisch ein Bild in Div fit fit fit”

Weitere verwandte Antworten zu “wie man automatisch ein Bild in Div fit fit fit” auf HTML

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen