Created
May 15, 2012 16:52
-
-
Save h4/2703228 to your computer and use it in GitHub Desktop.
Сложные таблицы
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
<!DOCTYPE HTML> | |
<html lang="en-US"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Таблицы</title> | |
<style type="text/css"> | |
td { | |
width:40px; | |
height:40px; | |
} | |
</style> | |
</head> | |
<body> | |
<table border="2"> | |
<tr> | |
<th>1</th> | |
<th>2</th> | |
<th colspan="2">3</th> | |
</tr> | |
<tr> | |
<th>4</th> | |
<td>5</td> | |
<td>6</td> | |
<td rowspan="2">6+</td> | |
</tr> | |
<tr> | |
<th>7</th> | |
<td>8</td> | |
<td>9</td> | |
</tr> | |
</table> | |
<table border="2"> | |
<tr> | |
<th>1</th> | |
<th>2</th> | |
<th>3</th> | |
<th>3</th> | |
</tr> | |
<tr> | |
<th>4</th> | |
<td colspan="2" rowspan="2">5</td> | |
<td rowspan="2">6+</td> | |
</tr> | |
<tr> | |
<th>7</th> | |
</tr> | |
</table> | |
<table border="2"> | |
<tr> | |
<th colspan="4"> | |
<table border="1" width="100%"> | |
<tr> | |
<th>1</th> | |
<th>2</th> | |
<th>3</th> | |
</tr> | |
</table> | |
</th> | |
</tr> | |
<tr> | |
<th>4</th> | |
<td colspan="2" rowspan="2">5</td> | |
<td rowspan="2">6+</td> | |
</tr> | |
<tr> | |
<th>7</th> | |
</tr> | |
</table> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment