IE9的表间距问题

时间:2011-09-26 14:33:40

标签: css internet-explorer

请参阅http://www.cookandheat.com

我的右侧4幅小图片的间距有问题。 所有在Firefox,Chrome中都可以,但是在IE9中传播开来..

 CSS looks like this:

 .fixedtable{
width: 90px;
overflow: hidden;
text-align: right;
vertical-align: top;

}

感谢您提出解决此问题的建议..

注意 - 这是示例HTML(从评论中移出):

<tr>
    <td class="fixedtable">
        <img src="images/service-now.jpg" alt="aga service" width="90" height="150" align="right" />
    </td>
    <td class="fixedtable">
        <img src="images/aga-cosmetics.jpg" alt="aga cosmetics" width="90" height="150" align="right" />
    </td>
    <td class="fixedtable">
        <img src="images/aga-installations.jpg" alt="aga installations" width="90" height="150" align="right" />
    </td>
    <td class="fixedtable" >
        <img src="images/regions-covered.jpg" alt="aga south west" width="90" height="150" align="right" />
    </td>
</tr>

1 个答案:

答案 0 :(得分:0)

我刚刚在broswer实验室检查了这个。看来你已经解决了这个问题。

  

正如我所看到的,你的问题不在于图像,而在于整体   部分分散得太远了。我怀疑这与此有关   '过渡'DTD声明。尝试使用'strict'代替,看看是否   你有同样的问题。 - Aleks G Sep 26 at 19:06

归功于他!您应该删除此问题或自己回答。