这可能不是你想要的确切答案,但我想我刚刚找到了一个很好的解决方法。
Iv\'e从211主题CSS(谁反应灵敏,imho)中提取了以下代码:
/* Images */
.entry-content img,
.comment-content img,
.widget img {
max-width: 97.5%; /* Fluid images for posts, comments, and widgets */
}
img[class*="align"],
img[class*="wp-image-"] {
height: auto; /* Make sure images with WordPress-added height and width >attributes are scaled correctly */
}
img.size-full {
max-width: 97.5%;
width: auto; /* Prevent stretching of full-size images with height and >>width attributes in IE8 */
}
这是为了使所有图像都有响应性(至少是嵌入内容中的图像…)现在我有了响应图像,但当使用标题时,我仍然存在同样的问题,这是因为tinyMCE使用图像的宽度向标题容器添加了一个样式属性。要解决这个问题,我所要做的就是将此添加到我的CSS中:
.wp-caption { max-width: 100%; }
完成!对我来说效果很好,尽管它可能不适用于特色图片。
我希望这对某人有所帮助:-)