mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 06:11:37 +00:00
22 lines
286 B
HTML
22 lines
286 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
table {
|
|
table-layout: fixed;
|
|
border: 1px solid black;
|
|
width: 300px;
|
|
}
|
|
td {
|
|
background: yellow;
|
|
border: 1px solid purple;
|
|
}
|
|
</style>
|
|
<table>
|
|
<colgroup>
|
|
<col>
|
|
<col>
|
|
</colgroup>
|
|
<tbody>
|
|
<td>One</td>
|
|
</tbody>
|
|
</table>
|