mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-28 10:37:17 +02:00
25 lines
270 B
HTML
25 lines
270 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
table {
|
|
border-collapse: collapse;
|
|
}
|
|
</style>
|
|
|
|
<body>
|
|
<table>
|
|
<colgroup>
|
|
<col />
|
|
<col />
|
|
<col />
|
|
</colgroup>
|
|
<tbody>
|
|
<tr>
|
|
<td>A</td>
|
|
<td>B</td>
|
|
<td>C</td>
|
|
<td>D</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</body>
|