mirror of
https://github.com/servo/servo.git
synced 2025-08-01 03:30:33 +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.
19 lines
292 B
HTML
19 lines
292 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<table style="width: 500px; text-align: center;">
|
|
<tr><td style="">Expanding...</td></tr>
|
|
<tr><td style="">to...</td></tr>
|
|
<tr><td style="">fit!</td></tr>
|
|
</table>
|
|
</body>
|
|
</html>
|
|
|