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>
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>
html table span 2 rows
<td colspan="2">Content here</td> // or...
<td rowspan="2">Content here</td>
html table colspan and rowspan
<td colspan="4">Content</td>
<td rowspan="4">Content</td>
rowspan and colspan in html
<html>
<body>
<!-- Table start -->
<table border="10">
<tr>
<!-- Colspan...Increases length of cell to x cell worth of length -->
<td colspan="5">The tittle of a table</td>
</tr>
<tr>
<td>Content-1</td>
<td>Content-2</td>
<td>Content-3</td>
<!-- Rowspan...Increases height of cell to y cell worth of height -->
<td rowspan="2">Content-4/8</td>
</tr>
<tr>
<td>Content-5</td>
<td>Content-6</td>
<td>Content-7</td>
</tr>
<table>
<!-- Table end -->
</body>
</html>
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us