我正在使用wptouch创建网站的移动版本http://www.betterdecoratingbible.com
除了在所有帖子中切断的博客文章图像外,一切都很好。如何使图像调整大小以使移动设备适合页面?
在移动设备上添加此CSS规则。
.post img {
width: 100%;
}
您的页面上有一个类:
.post img {
max-width: 100%;
height: auto;
}
您正在寻找的课程是:
p img {
max-width: 600px !important;
height: auto;
}
将max-width: 600px !important;
更改为 max-width: 100% !important;
或删除'!重要',以便其他类可以偏爱。