mirror of
https://github.com/servo/servo.git
synced 2025-06-19 06:38:59 +01:00
match L. David Baron's work-in-progress specification. http://dbaron.org/css/intrinsic/ Column spans are not yet supported. This effectively adds support for percentage widths, and it also fixes many bugs, improving the layout of Google and Wikipedia.
23 lines
444 B
HTML
23 lines
444 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
.rel {
|
|
position: relative;
|
|
}
|
|
.abs {
|
|
position:absolute;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>Don't crash!</p>
|
|
<table class="rel">
|
|
<tbody>
|
|
<tr class="abs">
|
|
<td> </td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</body>
|
|
</html>
|