【发布时间】:2016-08-14 21:12:10
【问题描述】:
我正在尝试在 Internet Explorer 中逐步呈现表格。它在 Firefox 中逐步呈现 - 但在 IE 中。它将它呈现在内存中,因此表格需要更多时间才能显示出来。
我在表格中添加了一个固定布局,并设置了一个 colgroup/col -
这就是代码的样子(我正在用 C# 构建它并使用引导程序):
sb.Append("<table class='table table-condensed small table-hover table-bordered' style='table-layout: fixed;'>");
sb.Append(@"<colgroup span=13>
<col width='350'>
<col width='*'>
<col width='*'>
<col width='*'>
<col width='*'>
<col width='*'>
<col width='*'>
<col width='*'>
<col width='*'>
<col width='*'>
<col width='*'>
<col width='*'>
<col width='*'>
</colgroup>");
【问题讨论】:
-
能否请您稍微解释一下您的渐进式表格的目的,以便帮助我提供适当的解决方案?谢谢
-
找考古学家 :)
标签: c# html twitter-bootstrap html-table