/ Published in: CSS
Writing expressions in CSS, used to make decisions at run-time.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<!--[if lte IE 6]> <style type="text/css" media="screen"> .wrap, .searchpanel, .messages, .constrain, .footer div { width: expression(document.body.clientWidth > 1000 ? "1000px" : document.body.clientWidth < 912 ? "765px" : "98%" ); } </style> <![endif]-->
URL: <na>