纯css的防止图片撑破页面的代码,自动按比例缩小

纯css的防止图片撑破页面的代码,自动按比例缩小

感谢西西小朋友分享

css代码部分
程序代码 程序代码

<style type="text/css">
.content-width {MARGIN: auto;WIDTH: 600px;}
.content-width img{    MAX-WIDTH: 100%!important;HEIGHT: auto!important;width:e­xpression(this.width > 600 ? "600px" : this.width)!important;}
</style>



html部分
程序代码 程序代码

<div class="content-width">
  <p><img src="images/01.jpg"/></p>
  <p><img src="images/02.jpg"/></p>
  <p><img src="images/03.gif"/></p>
</div>




文章来自: 本站原创
引用通告: 查看所有引用 | 我要引用此文章
Tags:
评论: 0 | 引用: 0 | 查看次数: 695
发表评论
你没有权限发表留言!