mirror of
https://github.com/servo/servo
synced 2026-04-29 02:47:55 +02:00
19 lines
444 B
HTML
19 lines
444 B
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
|
<html><head>
|
|
<style type="text/css">
|
|
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">
|
|
<tbody><tr><td style="border:solid 4px orange; height:34px">cell 1</td></tr>
|
|
</tbody></table>
|
|
</div>
|
|
|
|
|
|
</body></html> |