dedecms文章图片自动缩放

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

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

或者简单的一点的,不判断长边

max- 600px;
text-align: center;
display: block;
margin: auto;

原文地址:https://www.cnblogs.com/surplus/p/13191763.html