Zachovať pomer obrazu css

Príklady kódu

2
0

css zachovať pomer obrázkov

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

zachovať pomer strán obrazu css

/* Simply add width without height,
aspect ratio will be maintained 
and height will be calculated accordingly*/

img {
  width: 100px;
}
0
0

html obrázok zachovať pomer strán

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

zachovať pomer obrazu css

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

V iných jazykoch

Táto stránka je v iných jazykoch

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................