Re: Mixing percentage height and min-height

One more question about percentage heights and min-height.  So if I have:

  .parent { min-height: 100px; }
  .child { height: 50% }

and

   <div class="parent"><div class="child"/></div>

then the child's computed height will be "auto" and the child will end up 0px 
tall while the parent ends up 100px tall, right?  That seems to be the 
conclusion of the preceding discussion.

What if I have:

  .parent { height: 20px; min-height: 100px; }
  .child { height: 50% }

and the same markup?  Should the child end up 10px tall?  Or 50px tall?  Or 0px 
tall?  Note that in this case the parent's height in fact does not depend on the 
  children, so I would think that it should be either 10px or 50px.  But I'm not 
sure which one of those it should be...

-Boris

Received on Friday, 13 October 2006 14:06:52 UTC