зеркало из https://github.com/mozilla/gecko-dev.git
21 строка
279 B
HTML
21 строка
279 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<style>
|
||
|
table { background: white }
|
||
|
colgroup { background: green }
|
||
|
td { color: white }
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<table>
|
||
|
<colgroup id="x" span="2">
|
||
|
<tr>
|
||
|
<td>One</td>
|
||
|
<td>Two</td>
|
||
|
<td>Three</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
</body>
|
||
|
</html>
|