I have the following code which works fine in ie8 but not in Chrome. I want the border to show and it is not:
.sitewidth{
width:1000px;
min-height:100%;
height:auto;
margin:0 auto 0 auto;
border-left: 1px #EE6A00 solid;
border-right:1px #EE6A00 solid;
overflow:visible !important;
}
It may be that it’s not showing high enough in Chrome without a height?
What’s in the html code? Sometime it will require a
<br clear="all" />before the end of the closing div so that the whole div shows on screen.I’m not too sure
min-heightwill have any affect if it’s followed byheight:auto;?