您的位置: 首页 > 源码资料
纯css图片自动按比例缩小代码(防止页面被图片撑破)
源码资料 时间:2010-03-26 作者/发布人:pc354 点击:3511
<style type=”text/css”>
< !–
img{
border:0;
margin:0;
padding:0;
max-width:650px;
width: expression_r(this.width > 650 && this.width > this.height ? 650px : ‘auto’;);
max-height:1650px;
height: expresion(this.height > 1650 ? 1650px : ‘auto’;);
} –>
< /style>
<img height="800" alt="" width="1280" src="pc35.com.jpg" />
< !–
img{
border:0;
margin:0;
padding:0;
max-width:650px;
width: expression_r(this.width > 650 && this.width > this.height ? 650px : ‘auto’;);
max-height:1650px;
height: expresion(this.height > 1650 ? 1650px : ‘auto’;);
} –>
< /style>
<img height="800" alt="" width="1280" src="pc35.com.jpg" />
--------------------------全文完----------------------------
0% (0)
0% (0)