首页 > Web开发 > 详细

CSS 实现的图片宽高自适应固定边框

时间:2016-01-31 19:54:23      阅读:177      评论:0      收藏:0      [点我收藏+]

关键在于:max-width:780px;以及下面那行。

固定像素适应:

以下是引用片段:
<style type="text/css">
<!--
body {
font-size: 12px;
text-align: center;
margin: 0px;
padding: 0px;
}
#pic{
  margin:0 auto;
  width:800px;
  padding:0;
  border:1px solid #333;
  }
#pic img{
   
max-width:780px;
    width:expression(document.body.clientWidth > 780? "780px": "auto" ); 

    border:1px dashed #000;
}
--&gt;
</style>
</head>
<body>
<div id="pic">
<img src="/articleimg/2006/03/3297/koreaad_10020.jpg"/>
</div>
</body>
</html>

 

百分比适应:
以下是引用片段:
<style type="text/css">
<!--
body {
font-size: 12px;
text-align: center;
margin: 0px;
padding: 0px;
}
#pic{
  margin:0 auto;
  width:800px;
  padding:0;
  border:1px solid #333;
  }
#pic img{
   
max-width:780px;
    width:expression(document.body.clientWidth>document.getElementById("pic").scrollWidth*9/10? "780px": "auto" );
border:1px dashed #000;
}
--&gt;
</style>
</head>
<body>
<div id="pic">
<img src="/articleimg/2006/03/3297/koreaad_10020.jpg"/>
</div>
</body>
</html>

CSS 实现的图片宽高自适应固定边框

原文:http://www.jb51.net/css/23267.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!