mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 00:25:27 +00:00
18 lines
291 B
HTML
18 lines
291 B
HTML
<html>
|
|
<head>
|
|
|
|
<style>
|
|
colgroup#s { width: 200px; }
|
|
</style>
|
|
|
|
</head>
|
|
<body>
|
|
<table border="1">
|
|
<colgroup></colgroup>
|
|
<colgroup id="s"></colgroup>
|
|
<tbody><tr><td>cell 1,1</td><td>cell 1,2</td></tr></tbody>
|
|
<tbody><tr><td>cell 2,1</td><td>cell 2,2</td></tr></tbody>
|
|
</table>
|
|
</body>
|
|
</html>
|