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>

 

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

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

 

posted on 2020-06-25 14:46  剩余价值  阅读(243)  评论(0编辑  收藏  举报

导航