mirror of
https://github.com/servo/servo
synced 2026-05-12 01:46:28 +02:00
23 lines
422 B
HTML
23 lines
422 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
.rel {
|
|
position: relative;
|
|
}
|
|
.abs {
|
|
position:absolute;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<table class="rel">
|
|
<tbody>
|
|
<tr class="abs">
|
|
<td>Don't crash!</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</body>
|
|
</html>
|