mirror of
https://github.com/servo/servo.git
synced 2025-06-16 12:24:29 +00: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
240 B
HTML
19 lines
240 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div style="text-align: center; width: 500px;">
|
|
<div>Expanding...</div>
|
|
<div>to...</div>
|
|
<div>fit!</div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|