Height in IE is displaying diffrent to firefox

Posted by user268707 on Stack Overflow See other posts from Stack Overflow or by user268707
Published on 2010-05-05T12:43:30Z Indexed on 2010/05/05 12:48 UTC
Read the original article Hit count: 115

Filed under:
|
|
|

I have a problem with displaying a set height in ie.

In my css I have set a height for my sidebar div as 2150px; which it displays fine in firefox but does not display the full height in ie.

How can I get ie to display the height I have set in ie?

Thanks in advance

The source code is below

#sidebar_newspr{
width:160px;
min-height:2150px; 
margin-top:1px; margin-right:2px;
border-right-style:solid; border-right-color:#900; border-right-width:1px;
float:left;
}
 #sidebar_newspr a{
 text-decoration:none;
 color:#FFF;
 font-size:12px; font-family:Verdana,Arial,Helvetica,sans-serif;
 }
 #sidebar_newspr a:hover{
 color:#900;
 }

© Stack Overflow or respective owner

Related posts about css

Related posts about internet-explorer