<p>Auto:</p>
<div class="height-60">
  <div id="div1">
    <b>Test Content</b>
  </div>
</div>
<br />
<p>Inherit:</p>
<div class="height-60">
  <div id="div2">
    <b>Test Content</b>
  </div>
</div>
.height-60{
  height: 60px;
}

#div1{
  height: auto;
  color: white;
  background-color: blue;
}

#div2{
  height: inherit;
  color: white;
  background-color: blue;
}
Run Pen

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.