用CSS如何控制网页中图片自适应大小
<style> div img { max-width:600px; width:600px; width:expression(document.body.clientWidth>600?"600px":"auto"); overflow:hidden; } </style> |
![]() |
注册 | 登录 忘记密码? | 51cto首页 | 博客 | 论坛 | 招聘 |
|
帮助 |
用CSS如何控制网页中图片自适应大小
<style> div img { max-width:600px; width:600px; width:expression(document.body.clientWidth>600?"600px":"auto"); overflow:hidden; } </style> |