Created
December 24, 2010 01:53
-
-
Save zhasm/753803 to your computer and use it in GitHub Desktop.
cell that spans two columns
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<body> | |
<h4>Cell that spans two columns:</h4> | |
<table border="1"> | |
<tr> | |
<th>Name</th> | |
<th colspan="2">Telephone</th> | |
</tr> | |
<tr> | |
<td>Bill Gates</td> | |
<td>555 77 854</td> | |
<td>555 77 855</td> | |
</tr> | |
</table> | |
<h4>Cell that spans two rows:</h4> | |
<table border="1"> | |
<tr> | |
<th>First Name:</th> | |
<td>Bill Gates</td> | |
</tr> | |
<tr> | |
<th rowspan="2">Telephone:</th> | |
<td>555 77 854</td> | |
</tr> | |
<tr> | |
<td>555 77 855</td> | |
</tr> | |
</table> | |
</body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment