mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
26 lines
372 B
HTML
26 lines
372 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
table { background: white }
|
|
col[span] { background: green }
|
|
td { color: white }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<table>
|
|
<colgroup id="x">
|
|
<col span="2"></col>
|
|
<col></col>
|
|
<col id="y"></col>
|
|
</colgroup>
|
|
<tr>
|
|
<td>One</td>
|
|
<td>Two</td>
|
|
<td>Three</td>
|
|
<td>Four</td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html>
|