min-width in IE
Posted: Thu Oct 26, 2006 6:15 pm
alright... this is the hack I have found for min-width in IE
but it doesn't seem to work... it works fine in Firefox of course... but in IE, it just acts like the width is the width... I put content in the div and it still is just 770px ??
Code: Select all
#container{
width: 770px;
background-color: #999;
}
html>body #container{
min-width: 770px;
width: auto;
}