mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
20 lines
340 B
HTML
20 lines
340 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
td {width: 100px; text-align:center}
|
|
div {position:absolute; border:green 4px solid}
|
|
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<!-- the height for table cells includes the border -->
|
|
<div>
|
|
<table cellspacing="0">
|
|
<tr><td style="border:solid 4px orange; height:34px">cell 1</td></tr>
|
|
</table>
|
|
</div>
|
|
</body>
|
|
</html>
|