IE5 max-width support & posible solution
问题 I simply wanna set a max and a min width to my content in my IE5 compatible site i read out of this site that the solution below could solve it, in this following example i only show max width. But there must be some issue cause it don't work can somebody tell me what is wrong? or another solution - it can have a javascript solution - but i need to be IE5 supported? * html .wrapper { width: expression( document.body.clientWidth > 960 ? "961px" : "auto" ); /* sets max-width for IE */ } html