dedecms文章图片自动缩放

在文章模板(如:article_article.htm)中加入以下css代码

<style type="text/css">
img,a img{
border:0;  
margin:0;  
padding:0;
max-width:600px;
width: expression(this.width > 600 && this.width > this.height ? 600px : ‘auto‘;);  
max-height:1650px;
height: expresion(this.height > 1650 ? 1650px : ‘auto‘;); 
}
</style>

css

相关推荐