Recently discovered that a relative positioned element inside a container with "min-height" defined but no "height" can't be positioned vertically, only horizontally. ¿Am I wrong? ¿Is there a reason for that? ¿Workarounds? Edit: The case is a % min-height; Here is the example:
<div style="position:relative; width:100%; min-height:100%; background-color:pink;">
<div style="position:relative; top:30%; left:30%; width:700px; height:500px; background-color:yellow;"></div>
The "top:30%" is ignored