til icon indicating copy to clipboard operation
til copied to clipboard

Maintain DIV aspect ratio in CSS

Open huygn opened this issue 7 years ago • 0 comments

https://stackoverflow.com/questions/1495407/maintain-the-aspect-ratio-of-a-div-with-css

div {
  width: 100%;
  padding-bottom: 75%; /* 4:3 ratio */
  background: gold;
}

padding-bottom values for other aspect ratios and 100% width:

aspect ratio  | padding-bottom value
--------------|----------------------
    16:9      |       56.25%
    4:3       |       75%
    3:2       |       66.66%
    8:5       |       62.5%

huygn avatar Jun 05 '17 16:06 huygn