(整理)复制美篇,公众号图片,导致图片失真变形问题解决方法,
我试了好多次,修改参数后,文章中的第一张图片老是变形,细长细长的,我就搜了一下论坛,由于搜索的关键字不对,让我一时间困惑了好久
论坛里找到的大哥们的回帖,整理如下
修改css文件
/public/static/index/default/article.css
查找:
.ShowContent img{
max-width: 100%;
height: auto;
margin-bottom: 5px;
}
修改为
.ShowContent img{
width:auto !important;
height:auto !important;
max-width:100%;
margin-bottom: 5px;
}
原贴地址
https://x1.php168.com/bbs/show-10217.html