29-10-2008

CSS/(X)HTML Cross browser max-width/ min-width (inc. IE6)

IE6 doesn't support the min-width or max-width css properties. But it does understand this : (not W3C valid css)

#container
{
min-width: 600px;
width:expression(document.body.clientWidth < 600? "600px": "auto" );
 
max-width: 1200px;
width:expression(document.body.clientWidth < 600? "600px" : document.body.clientWidth > 1200? "1200px" : "auto");
}

Comments:

2 comments.
Your comment:

»
Rubens Mariuzzo 08/04/2011, 8:35 pm
I will give it a try! Thanks for the tip.
Rubens Mariuzzo 08/04/2011, 8:37 pm
Work in both Firefox 4 and IE8.

 

[x]