该网页包含Wordpress插入的图像。用于插入第一个图像的代码是:
[caption id="attachment_887" align="alignnone" width="604"]
<a href="http://steven.doig.com.au/files/2013/06/Forest_Legacy_m.jpg">
<img class="size-large wp-image-887" alt="a Forest Legacy group" src="http://steven.doig.com.au/files/2013/06/Forest_Legacy_m-1024x681.jpg" width="1024" height="681" />
</a> a Forest Legacy group[/caption]
此图像由CSS控制:
#content .wp-caption a img {
width: 614px;
height: auto;
}
我想使该图像响应。我插入了CSS:
@media (max-width:988px) {
#content .wp-caption a img {
width: 99.03225806%; /* 614/620 */
height: auto;
}
}
但是,DIV.wp标题保持在604px,如在Wordpress帖子中指定的那样。我尝试将其指定为百分比(97.41935483%),但Wordpress将其重新解释为104px。
内联CSS覆盖了我插入样式表中的CSS。
<div id="attachment_887" class="wp-caption alignnone" style="width: 614px">
关于如何使.wp-caption响应的任何想法?