background-attachment-margin-root-001.html (790B)
1 <!doctype HTML> 2 <title>Background-attachment: scroll should be positioned relative to the root element and should extend to cover the entire canvas in the presence of fixed backgrounds</title> 3 <link rel="author" title="Philip Rogers" href="mailto:pdr@chromium.org"> 4 <link rel="help" href="https://www.w3.org/TR/css-backgrounds-3/#root-background"> 5 <link rel="help" href="https://drafts.csswg.org/css-backgrounds-3/#the-background-attachment"> 6 <link rel="match" href="background-attachment-margin-root-001-ref.html"> 7 <style> 8 html { 9 background: linear-gradient(rgba(0,255,0,0.5), rgba(0,0,255,0.5)), linear-gradient(rgba(0,0,0,1), rgba(0,0,0,1)); 10 background-attachment: scroll, fixed; 11 background-size: 100px 100px, 100px 100px; 12 height: 300px; 13 margin: 50px; 14 } 15 </style>