Answers for "colspan in html"

1

bootstrap table combine columns

<thead>
  <tr>
    <th rowspan="2">State</th>
    <th rowspan="2">Utilities Company</th>
    <th colspan="3">Summer Period</th>
  </tr>
  <tr>
    <th>data1</th>
    <th>data2</th>
    <th>data3</th>
  </tr>
</thead>
Posted by: Guest on September-12-2020
1

th colspan html

<td colspan="column_value">text</td>
Posted by: Guest on September-06-2021
0

col tag in html

<!-- use the scope tag -->
<table>
  <tr scope="col">Column</tr>
  <tr scope="row">Row</tr>
</table>
Posted by: Guest on May-05-2020

Browse Popular Code Answers by Language