Horje

How to define table cells that span more than one row or one column on HTML <tr> Tag

Colspan and rowspan
  1. Cell that spans two columns.
  2. Cell that spans two rows.
index.html
Example: HTML
 <table>
  <tr>
    <th>Name</th>
    <th>Email</th>
    <th colspan="2">Phone</th>
  </tr>
  <tr>
    <td>John Doe</td>
    <td>[email protected]</td>
    <td>123-45-678</td>
    <td>212-00-546</td>
  </tr>
</table> 

Output should be:

How to define table cells that span more than one row or one column on HTML <tr> Tag




Type:
html
Category:
Web Tutorial
Sub Category:
HTML Tag
Uploaded by:
Admin