Hey I downloaded this:
http://css-tricks.com/examples/PerfectFluidWidthLayout/
And found this is the css:
#page-wrap {
background: white;
min-width: 780px;
max-width: 1260px;
margin:0 auto;
width:expression(document.body.clientWidth < 782? "780px" : document.body.clientWidth > 1262? "1260px" : "auto");
}
What on earth does that width statement mean? I've never seen anything like that in css...
I posted on their forum but no luck as yet.. thanks, andy
http://css-tricks.com/examples/PerfectFluidWidthLayout/
And found this is the css:
#page-wrap {
background: white;
min-width: 780px;
max-width: 1260px;
margin:0 auto;
width:expression(document.body.clientWidth < 782? "780px" : document.body.clientWidth > 1262? "1260px" : "auto");
}
What on earth does that width statement mean? I've never seen anything like that in css...
I posted on their forum but no luck as yet.. thanks, andy