mirror of
https://github.com/servo/servo.git
synced 2025-06-10 17:43:16 +00:00
15 lines
482 B
HTML
15 lines
482 B
HTML
<html>
|
|
<head>
|
|
<title>Block with over-contrained margins+borders+padding+width = containing block width</title>
|
|
<style>
|
|
body { width: 300px; margin: 0; }
|
|
p { background: green; width: 200px; height: 100px; margin: 0; position: absolute }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p style="top: 20px; left: 70px"></p>
|
|
<p style="top: 140px; left: 30px"></p>
|
|
<p style="top: 260px; left: 120px"></p>
|
|
<p style="top: 380px; left: -20px"></p>
|
|
</body>
|
|
</html>
|