摘要: 这个CSS代码实现了让图片在DIV中水平居中,并且自动缩放至在CSS中指定的大小。CSS这样写:content img{max-width: 678px!important;height: auto!important;width:expression(this.width > 678 ? "678px" :true)!important;-webkit-max-width:678px; margin:0 auto;display:block;}如果图片宽度超过678px,则自动等比例缩放至678px,否则按实际大小显示。并且水平居中显示。你可以修改678px这个数字 阅读全文
posted @ 2011-10-26 20:01 superfans98 阅读(2198) 评论(0) 推荐(0)