Click here to Skip to main content
15,885,885 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hello Everyone,

I was using this CSS Property min-height:**** for one of my web application where I want to keep the minimum height of a div to a certain amount of pixels.

Ok, I have done it and it is working fine in Mozilla Chrome and other browsers just not working in Internet Explorer 8. Here is the code
CSS
#Content{
	min-height:400px;
	width:900px;
	background-color:#F7F2B2;
	background-image: URL(../image/ContentBackground.gif);
	background-repeat: repeat-x repeat-y;
}

HTML Code
HTML
<div id="Content">
content goes here.
</div>

Now this div's minimum height shown in all browsers is 400px. But it is not working in Internet Explorer version 8.

Is there a different code for Internet Explorer.

Please Let me know.

Thanks in advance.
Posted
Updated 12-Nov-11 0:10am
v2

1 solution

 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900