Maintain div aspect ratio according to height

The CSS trick you wrote, works pretty well to keep ratio width / height on an element. It is based on the padding property that, when its value is in percent, is proportional to parent width, even for padding-top and padding-bottom.

There is no CSS property that could set an horizontal sizing proportionally to the parent height. So I think there is no clean CSS solution.


You can use vh units for both height and width of your element so they both change according to the viewport height.

vh 1/100th of the height of the viewport. (MDN)

DEMO

.box {
    position: absolute;
    height:50vh;
    width:100vh;
    bottom: 0;
    background:teal;
}
<div class="box"></div>

There is another, more efficient way to achieve constant aspect ratio according to height.

You can place an empty svg so you dont have to load an external image.

HTML code:

    <svg xmlns="http://www.w3.org/2000/svg"
      height="100"
      width="200"
      class='placeholder-svg'
    />

CSS code:

.placeholder-svg {
  width: auto;
  height: 100%;
}

Change width/height to achieve desired aspect ratio.

Keep in mind, the svg might overflow.

http://www.w3.org/2000/svg is just a namespace. It doesn't load anything.

If you change placeholder-svg class to:

.placeholder-svg {
  width: 100%;
  height: auto;
}

then height is adjusted according to width.

Demo 1 Width is adjusted according to height and 2:1 aspect ratio.

Demo 2 same as above, but you can resize easily (uses React)


You can use an image that has the desired proportions as to help with proportional sizing (images can be scaled proportionally by setting one dimension to some value and other to auto). The image does not have to be visible, but it must occupy space.

.box {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 50%;
}
.size-helper {
  display: block;
  width: auto;
  height: 100%;
}
.inner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 153, .8);
}
<div class="box">
  <img class="size-helper" src="//dummyimage.com/200x100/999/000" width="200" height="100">
  <div class="inner">
    1. box has fluid height<br>
    2. img has 2:1 aspect ratio, 100% height, auto width, static position<br>
    2.1 it thus maintains width = 200% of height<br>
    2.2 it defines the dimensions of the box<br>
    3. inner expands as much as box
  </div>
</div>

In the above example, box, inner and helper are all same size.