我的 IE/CSS 问题让我大吃一惊!我已经尝试了一切(我认为)可以想象的将表格单元格的文本居中。我从古老的方法开始:
<tr>
<th width="100" align="center" class="centerme">Some text here.</th>
</tr>
然后,我尝试了 CSS:
.centerme {text-align:center;margin:0 auto;}
然后我尝试将样式内联(保留已经提到的所有其他方法):
<tr>
<th width="100" align="center" class="centerme" style="text-align:center;">Some text here.</th>
</tr>
我可能会错过什么?我尝试将<tr>
元素居中对齐,这不应该有所作为,但是 IE 是一个难以相处的噩梦!请注意,这只是IE 中的一个问题。在其他所有浏览器中都可以(这是 IE 8)