I am designing a fluid layout (no fixed px, all in %)

I have the HTML as;

<div class="parent">
<div class="fl child"><a class="prev"></a></div>
</div>

If I check in Firebug, the height of parent is calculated as 400px..But if I give child as height:100%, it does not take the entire height..

How do I fix this?

link|improve this question

1  
Could you add the CSS ? How the 400px is calculated ? – Jean-Charles Oct 17 '11 at 9:29
That is just based on the content it has..i have not added any fixed px value anywhere.. – testndtv Oct 17 '11 at 11:18
feedback

1 Answer

up vote 0 down vote accepted

Unfortunately heights don't work so well with percentages, you can take a look at the min-height css property but you may need to employ some javascript.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.