0

我使用表格来生成简单的水平图(便于缩放)。我使用 colspanning 来获得精确的重叠(有时单元格相互重叠,但在本例中没有)。

我的问题是 IE(8) 使相对单元格宽度错误。

我知道一个单元格不能小于它的内容,但这不是这里的问题。

例如,示例中的“X 65”单元格比 IE 中的 47% 宽很多。然而,Firefox 做得很好。

这是示例:

<html>
<body>

<style>
table.CompAnalysisTable {
    border-width: 1px;
    border-spacing: 0px;
    border-style: solid;
    border-color: black;
    border-collapse: collapse;
    background-color: white;
    font-size:8px;
}

table.CompAnalysisTable td {
    border-width: 1px;
    border-style: solid;
    border-color: black;
}

table.CompAnalysisTable td table 
{
    border-style:none;
}
</style>

<table>
<tr>
<td>
</td>
<td class="nobr" valign="middle" align="left">Graph</td>
<td valign="middle" width="100%" align="right">Total 73</td>
</tr>
</tbody>
</table>

<table class="CompAnalysisTable" width="100%" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td class="nobr" style="width: 47%; background-color: rgb(172, 172, 255);" colspan="65">X&nbsp;65</td>
<td class="nobr" style="width: 47%; background-color: white;" colspan="65"></td>
<td class="nobr" style="width: 5%; background-color: rgb(172, 172, 255);" colspan="7">A&nbsp;7</td>
<td class="nobr" style="width: 1%; background-color: rgb(172, 172, 255);">B&nbsp;1</td>
</tr>
<tr>
<td class="nobr" style="width: 47%; background-color: white;" colspan="65"></td>
<td class="nobr" style="width: 52%; background-color: rgb(255, 152, 152);" colspan="72">A&nbsp;72</td>
<td class="nobr" style="width: 1%; background-color: rgb(255, 152, 152);">B&nbsp;1</td>
</tr>
</table>


</body>
</html>

我已经尝试过其他技术,例如 div 和为每一行单独的表,但 colspanning 是获得重叠精确的唯一技术。

另一种解决方案是在服务器上渲染图像,但随后我放松了缩放比例,这非常耗时。

任何帮助深表感谢。

4

2 回答 2

0

我和你有同样的问题......我的解决方案是使用一些时髦的 javascript(当然是 Jquery ;-))代码来修复 TD 宽度......

一些无用的东西,如果你想要一个宽度为 100%,设置它的宽度为 10 000px !

在 IE、Google Chrome 和 Safari 上同样的问题

于 2010-01-29T16:58:01.230 回答
0

像这样的标题将通过将其呈现为 IE 7 来省去为 IE 8 修复它的麻烦:

<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" /> 

除此之外,您可以尝试查看 IE 8 正在做什么,并使用特定的 html 条件进行修复:

<!--[if IE 8]><![endif]-->

我希望我能提供更多帮助,但我没有 IE 8,所以我看不到问题所在。
也许这些链接可以提供帮助:

HTML 条件
Beyond Doctypes

于 2009-09-05T04:22:59.333 回答