servo/tests/ref/overconstrained_block_ref.html
2014-09-08 20:21:42 -06:00

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>