解决方法
你必须重新指定display:inline;在IE样式表中的块级元素上.
HTML:
<div class="ImageSlideShow">blah</div>
常规CSS:
.ImageSlideShow { display:inline-block; }
IE CSS:
<!--[if lt IE 8]> <style> .ImageSlideShow { display:inline; zoom:1; } </style> <![endif]-->
见:http://work.arounds.org/using-inline-block-ie7-and-ie6/
奖金:
你还应该指定display:inline; for .ImageSlideShow .ImageNum {}来缓解另一个IE bug.