在表行</div>中使用<div>标记

时间:2014-05-01 16:37:04

标签: html css html5 css3

我是HTML / CSS的新手

我的要求是在表格中,我的第一行应该是不同的&#34; div&#34;标记和不同div标记中的其他行。谁能解释我怎么能这样做

<table>
      <div> 1st Row </div>
      <div> 2nd Row
            3rd Row
            4rth Row
            5th Row
                    </div> 

我如何在桌子内做。

1 个答案:

答案 0 :(得分:2)

无需使用DIV标签。请改用<tbody>

<table>
    <tbody>
        <tr>...</tr>
    </tbody>
    <tbody>
        <tr>...</tr>
        <tr>...</tr>
        <tr>...</tr>
    </tbody>
</table>

一个表可以有多个TBODY元素,用于在语义上将行组合在一起。