Hi I am trying to give some sense to this expression
#container, #footer {
width: expression(document.body.clientWidth < 742? "740px" : document.body.clientWidth > 1202? "1200px" : "auto");
}
found on here http://www.cameronmoll.com/archives/000892.html
but I can't quite get it. Is it saying if the width of the page is less than 745 then resize it to 740 or if it is more than 1202 then resize it to 1200? But what about that auto at the end of it? I guess it's not the same as a normal if statement, any idea please?
thanks