首先,图像消失了,我通过放置<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
在标题中进行了修复,这很好!
现在图像正在显示,但在第二个块[IMG]之后重叠。我很难解决这个问题,因为无法安装 IE 7-9,我依赖于 netrenderer 等模拟器 :(
标头<!DOCTYPE html>
尝试了其他一些,但没有任何变化。
容器是这样的:
<div class="post-container-odd" >
<h2><a href="http://site.com/destinos/africa-ilhas/">África & Ilhas</a></h2>
<div class="thumbnail"><a href="http://site.com/destinos/africa-ilhas" title="Ilhas Maldivas"><img src="http://site.com/wp-content/uploads/2012/07/maldivas-22-380x200.jpg" title="" alt=""/></a></div>
</div>
<div class="post-container-even" >
<h2><a href="http://site.com/destinos/america-do-norte-caribe/">América do Norte & Caribe</a></h2>
<div class="thumbnail"><a href="http://site.com/destinos/america-do-norte-caribe" title="Chicago"><img src="http://site.com/wp-content/uploads/2012/07/chicago-29-380x200.jpg" title="" alt=""/></a></div>
</div>
而 CSS 就是这样的:
.post-container-even{float:left;margin:0 0 20px 0;display:table}
.post-container-odd {float:left; margin: 0 5px 20px 0}
添加了一个ie.css
(解决了一些问题但仍然重叠):
.post-container-odd { float:left; margin: 0 5px 30px 0; display:inline;}
.post-container-even{ float:left; margin:0 0 30px 0; display:inline; clear: left}
.post-container-even img, .post-container-odd img { height: 200px ; width: 380px ; display:block; clear: both}
.post-container-even .thumbnail, .post-container-odd .thumbnail { height: 200px ; width: 380px ; }
也许<div style="clear:both"></div>
每两个iten放置一个可以解决,但这很蹩脚?
谢谢你的帮助
笔记:
没有ie.css
说明:图片
现在,与ie.css
:图片