mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-12-25 06:29:21 +00:00
13 lines
283 B
HTML
13 lines
283 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
/* In border-collapse mode, inset becomes ridge. */
|
|
table { border-collapse: collapse; border-spacing: 0 }
|
|
table, td { border-style: inset; }
|
|
td { border-width: 20px; width: 100px; height: 100px}
|
|
</style>
|
|
<table>
|
|
<tr>
|
|
<td></td>
|
|
</tr>
|
|
</table>
|