CSS图片缩小-纯css的防止图片撑破页面的代码(图片自动缩放)
代码
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<style type="text/css">
.content-width {MARGIN: auto;WIDTH: 600px;}
.content-width img{MAX-WIDTH: 100%!important;HEIGHT: auto!important;width:expression(this.width > 600 ? "600px" : this.width)!important;}
</style>
</head>
<body>
<div class="content-width">
<p><img src="http://www.lanrentuku.com/down/js/images/12567247980.jpg"/></p>
<p><img src="http://www.lanrentuku.com/down/js/images/12567247981.jpg"/></p>
</div>
</body>
</html>
http://www.lanrentuku.com/js/css-697.html#
运行代码 提示:您可以先修改部分代码再运行,保存代码功能在Firefox下无效。
版权与免责声明:
凡注明稿件来源的内容均为转载稿或由网友用户注册发布,本网转载出于传递更多信息的目的;如转载稿涉及版权问题,请作者联系我们,同时对于用户评论等信息,本网并不意味着赞同其观点或证实其内容的真实性;