“Halten Sie das Seitenverhältnis von Bild CSS” Code-Antworten

CSS halten das Bildverhältnis bei

img {
  object-fit: cover;
  width: 100px;
  height:100px;
}
monospace

Halten Sie das Seitenverhältnis von Bild CSS

img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}
Mobile Star

CSS halten das Seitenverhältnisbild ein

.image-full {
    background: url(...some image...) no-repeat;
    background-size: cover;
    background-position: center center;
}
Breakable Batfish

HTML -Bild halten Seitenverhältnis

Don't set height AND width. Use one or the other and the correct aspect ratio will be maintained.
Delightful Duck

Ähnliche Antworten wie “Halten Sie das Seitenverhältnis von Bild CSS”

Fragen ähnlich wie “Halten Sie das Seitenverhältnis von Bild CSS”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen