Skip to content

Instantly share code, notes, and snippets.

@h4
Created May 15, 2012 16:52
Show Gist options
  • Save h4/2703228 to your computer and use it in GitHub Desktop.
Save h4/2703228 to your computer and use it in GitHub Desktop.
Сложные таблицы
<!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