功能:当图片超过300px的时候,只显示300px的宽度
来源:asp编程网(www.aspbc.com)
作者:wangsdong
原创文章,转载请注明来源,谢谢
<style type="text/css">
img{ max-width:300px; width:expression(document.body.clientWidth>300px?"300px":this.value+"px"); overflow:hidden;}
</style>
<img src="images/a.jpg" alt="" /><br />
<img src="images/b.jpg" alt="" />