使用css将标题列宽与列与两个不同表匹配

时间:2014-01-28 11:31:42

标签: css

我想使用css将表的标题列宽与不同表的列宽匹配。

我该怎么做?

<div class="datagrid">
<table>
    <thead>
    <tr>
        <th>col1</th>
        <th>col2</th>
        <th>col3</th>
    </tr>
    </thead>
</table>

<div class="datagrid" style="height: 500px; overflow:auto;">
   <table>
      <tfoot>
      </tfoot>
      <tbody>
         <tr><td>col1</td><td>col2</td><td>col3</td></tr>
         <tr><td>col1</td><td>col2</td><td>col3</td></tr>
      </tbody>
   </table>
</div>

1 个答案:

答案 0 :(得分:0)

两张桌子之间有什么关系?

我最初的想法是创建一个新的表格行并使用COLSPAN =“3”,&amp;放任何你喜欢的文字。

有效地,较低的细胞将与上部细胞匹配,&amp;中间的文字看起来不像是表格的一部分。

(使用各种命令/设置来隐藏表格边框 - 因此它看起来不像是表格的一部分。)

希望有意义