[css] Child inside parent with min-height: 100% not inheriting height

thought I would share this, as I didnt see this anywhere, and is what I used to fix my solution.

SOLUTION: min-height: inherit;

I had a parent with a specified min height, and I needed a child to also be that height.

_x000D_
_x000D_
.parent {_x000D_
  min-height: 300px;_x000D_
  background-color: rgba(255,255,0,0.5); //yellow_x000D_
}_x000D_
_x000D_
.child {_x000D_
  min-height: inherit;_x000D_
  background-color: rgba(0,255,0,0.5); //blue_x000D_
}_x000D_
_x000D_
p {_x000D_
  padding: 20px;_x000D_
  color: red;_x000D_
  font-family: sans-serif;_x000D_
  font-weight: bold;_x000D_
  text-align: center;_x000D_
}
_x000D_
<div class="parent">_x000D_
  <div class="child">_x000D_
    <p>Yellow + Blue = Green :)</p>_x000D_
  </div>_x000D_
</div>
_x000D_
_x000D_
_x000D_

This way the child now acts as height 100% of the min-height.

I hope some people find this useful :)