“Simpan rasio aspek CSS gambar” Kode Jawaban

CSS menjaga rasio gambar

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

Simpan rasio aspek CSS gambar

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

CSS menjaga gambar rasio aspek

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

gambar html menjaga rasio aspek

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

Jawaban yang mirip dengan “Simpan rasio aspek CSS gambar”

Pertanyaan yang mirip dengan “Simpan rasio aspek CSS gambar”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya