Answers for "rowspan in html"

2

html table span 2 rows

<td colspan="2">Content here</td> // or...
<td rowspan="2">Content here</td>
Posted by: Guest on July-03-2020
2

html table colspan and rowspan

<td colspan="4">Content</td>
<td rowspan="4">Content</td>
Posted by: Guest on September-29-2020
0

header with rowspan

<table>
  <thead>
    <tr>
      <th rowspan="2">No.</th>
      <th rowspan="2">Creation Date</th>
      <th rowspan="2">Week Day</th> 
      <th rowspan="2">Log Type</th>
      <th colspan="2" style="text-align: center">Time</th>
      <th rowspan="2">action</th>
    </tr>
    <tr>
      <th>IN/START</th>
      <th>OUT/STOP</th>
    </tr>
  </thead>
</table>
Posted by: Guest on June-24-2021

Browse Popular Code Answers by Language