我正在使用WPTouch创建我的网站http://www.BetterDecoratingbible.com
的移动版本除了在所有帖子中删除的博客文章图片外,一切都很有效。如何使图像调整大小以适应移动设备以适应页面?
答案 0 :(得分:0)
将此css规则添加到移动设备上的图片中。
.post img {
width: 100%;
}
答案 1 :(得分:0)
您的网页上有一个课程覆盖此课程:
.post img {
max-width: 100%;
height: auto;
}
您正在寻找的课程是:
p img {
max-width: 600px !important;
height: auto;
}
将max-width: 600px !important;
更改为max-width: 100% !important;
或删除'!important'这样其他班级就可以优先考虑。