Forum Moderators: not2easy
#head{height:80px;background:#FFFFFF;}
#logo {padding:2px;float:left;height:100%;width:25%;}
#anim{padding:2px;float:left;width:65%;height:100%;overflow:hidden;}
#msdiv{width:100%;height:100%;padding:2px;-moz-border-radius-bottomleft:5px;}
#MnuDiv{padding:2px;float:left;height:100%;width:230px;background-color:#f8f9f6;overflow:hidden;}
#ContDiv{padding:2px;float:left;width:78%;height:100%;}
.ContHeading {background:#F7F7F7;color:#004a95;padding:7px 7px 5px;}
.ContDet{margin:5px 0 0;padding:2px;height:100%;overflow:visible;}
#footer{clear:left;width:100%;background:#cccccc;}
can u please suggest me where i should do the changes......any suggestion is highly appreciated
height specified in percentage means relative to the containing block, but there are a few gotchas:
[w3.org...]
states:
The percentage is calculated with respect to the height of the generated box's containing block. If the height of the containing block is not specified explicitly (i.e., it depends on content height), and this element is not absolutely positioned, the value computes to 'auto'.
So unless you explicitly set the height yourself somehow, it's not going to play along with you I'm afraid.
To make columns look the same: it's possible fake backgrounds can help: vertically repeat an image as background on the parent. If needed stretch the parent with a clear (as I see both your columns are floated (which in itself isn't necessary)
Since you use the mozilla proprietary border radius: