position-fixed-001

Fixed position elements impact on later siblings

WeasyPrint

This browser

Assertion
Fixed positioned elements do not impact later siblings.

Source

 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
 2 <html>
 3     <head>
 4         <title>CSS Test: Fixed position elements impact on later siblings</title>
 5         <link rel="author" title="Microsoft" href="http://www.microsoft.com/">
 6         <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#propdef-position">
 7         <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#choose-position">
 8         <meta name="flags" content="">
 9         <meta name="assert" content="Fixed positioned elements do not impact later siblings.">
10         <style type="text/css">
11             #div1
12             {
13                 position: relative;
14             }
15             #div2, #div3
16             {
17                 height: 1in;
18                 width: 1in;
19             }
20             #div2
21             {
22                 background: green;
23                 position: fixed;
24             }
25             #div3
26             {
27                 background: red;
28             }
29         </style>
30     </head>
31     <body>
32         <p>Test passes if there is no red visible on the page.</p>
33         <div id="div1">
34             <div id="div2"></div>
35             <div id="div3"></div>
36         </div>
37     </body>
38 </html>