我正在使用WPTouch创建我的网站http://www.BetterDecoratingbible.com的移动版本
除了在所有帖子中被切断的博客帖子图片之外,所有的东西都运行得很好。如何调整移动设备的图片大小以适应页面大小?
发布于 2018-02-22 20:57:06
将此css规则添加到移动设备上的图像。
.post img {
width: 100%;
}发布于 2018-02-22 21:07:28
您的页面上有一个类覆盖了这个类:
.post img {
max-width: 100%;
height: auto;
}您要查找的类是:
p img {
max-width: 600px !important;
height: auto;
}将max-width: 600px !important;更改为max-width: 100% !important;或删除“!important”,以便其他类可以优先使用。
https://stackoverflow.com/questions/48927933
复制相似问题