mirror of
https://github.com/servo/servo.git
synced 2025-08-05 05:30:08 +01:00
22 lines
422 B
HTML
22 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>
|