我刚刚发现我在 IE 8 中的文章缩略图仅显示为细条纹 - 正如您在图片中看到的那样:
网络:http: //jdem.cz/vzcy9
此行为在任何其他浏览器中都不存在 - 即 FF 14、Opera 11、Chrome X、IE 7、IE 9 都可以。
您知道是什么原因导致 IE8 出现这种情况吗?
我刚刚发现我在 IE 8 中的文章缩略图仅显示为细条纹 - 正如您在图片中看到的那样:
网络:http: //jdem.cz/vzcy9
此行为在任何其他浏览器中都不存在 - 即 FF 14、Opera 11、Chrome X、IE 7、IE 9 都可以。
您知道是什么原因导致 IE8 出现这种情况吗?
似乎max-wdth:99.35%
规则正在这样做。尝试将 a 添加width:auto
到设置小数最大宽度的相同规则中。
换句话说,改变:
#masthead img, #featured-content img, #recent-content img, .entry-content img, .entry-thumb img, .comment-content img, .widget img {
background: #fff;
border: 1px solid #bbb;
max-width: 99.35%;
/* Fluid images for posts, comments, and widgets */
padding: 1px;
}
到
#masthead img, #featured-content img, #recent-content img, .entry-content img, .entry-thumb img, .comment-content img, .widget img {
background: #fff;
border: 1px solid #bbb;
max-width: 99.35%;
width:auto;
/* Fluid images for posts, comments, and widgets */
padding: 1px;
}