tbody

tbody
HTML tbody Element
The HTML <tbody> table row group element is used to group a block of table rows together.

HTML CODE EXAMPLE
<table>
  <tbody style="color:#A8D3FF; background:#000;">
    <tr>
      <td>Cell 1</td>
      <td>Cell 2</td>
    </tr>
    <tr>
      <td>Cell 3</td>
      <td>Cell 4</td>
    </tr>
  </tbody>
  <tbody style="color:#900; background:#FFD2D6;">
    <tr>
      <td>Cell 5</td>
      <td>Cell 6</td>
    </tr>
    <tr>
      <td>Cell 7</td>
      <td>Cell 8</td>
    </tr>
  </tbody>
</table>
 
Cell 1Cell 2
Cell 3Cell 4
Cell 5Cell 6
Cell 7Cell 8

0 Response to "tbody"

Post a Comment