mirror of
https://github.com/servo/servo
synced 2026-05-08 16:12:15 +02: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.
24 lines
444 B
HTML
24 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>
|