mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
20 lines
252 B
HTML
20 lines
252 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
table { background: white }
|
|
col { background: green }
|
|
td { color: white }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<table>
|
|
<col id="col" span="2">
|
|
<tr>
|
|
<td>One</td>
|
|
<td>Two</td>
|
|
<td>Three</td>
|
|
</tr>
|
|
</table>
|
|
</html>
|