dedecms文章图片自动缩放
Posted surplus
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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>
以上是关于dedecms文章图片自动缩放的主要内容,如果未能解决你的问题,请参考以下文章