min-width en max-width in ie

Simuleer min-width / max-width in IE door onderstaande code;

#container
min-width: 600px;
max-width: 1200px;
width:expression(document.body.clientWidth < 600? "600px" : document.body.clientWidth > 1200? "1200px" : "auto");
}
Geplaatst in css, ie. Leave a Comment »

Reageer