现在位置: 首页 > 自适应
+0°

WordPress 大图片自动缩放

2019年11月17日 20:58:44 WordPress  ⁄ 共 156字 暂无评论 ⁄ 被围观 4,235次
直接修改主题下的 style.css 文件,其中加入下面代码即可。 /*图片最大宽度设置*/  p img {      max-width:900px;      width: expression(this.width > 900 ? “900px” : true);      height:auto;  }  
阅读全文