yoguz
查看yoguz的博客
金钱 | : 18255 |
Level | : 0 |
发帖数 | : 1564 |
最后登陆 | : 2019/10/24 |
注册时间 | : 2004/12/13 |
|
兼容IE6/IE7/FF的页面最小宽度设置 要求页面在达到一个指定宽度后就不再随窗口宽度的减小而减小。 交流区里无意找到这个话题后,感觉有必要放在文章里。 具体的代码: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>测试页</title> <style type="text/css"> body{ margin:0 auto } #wrap{ height:300px; margin:0 auto; background:#ccc; width:expression(document.body.clientWidth <= 600? "600px": "auto" ); min-width:600px; } </style> </head> <body> <div id="wrap"> </div> </body> </html> 代码分析 width:expression这段是针对IE的,因为它没有支持min-width属性。而是需要通过JS判断当前窗口的宽度document.body.clientWidth是否小于指定的宽度。 (ps:?? ... ? ... : ... 其实是判断的缩写。就是判断问号前的条件是否成立,成立则执行 : 号之前的语句)
|