mirror of
https://github.com/servo/servo
synced 2026-05-14 02:47:14 +02:00
22 lines
254 B
HTML
22 lines
254 B
HTML
<!doctype HTML>
|
|
<style>
|
|
table {
|
|
border-collapse: collapse;
|
|
}
|
|
td {
|
|
width:50px;
|
|
height:50px;
|
|
border: 10px solid gray;
|
|
}
|
|
</style>
|
|
<table>
|
|
<tr>
|
|
<td></td>
|
|
<td></td>
|
|
</tr>
|
|
<tr>
|
|
<td></td>
|
|
<td></td>
|
|
</tr>
|
|
</table>
|