background-attachment-margin-root-002.html (782B)
1 <!doctype HTML> 2 <title>Background-attachment: fixed should be positioned relative to the view and should extend to cover the entire canvas in the presence of scroll 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-002-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: fixed, scroll; 11 background-size: 100px 100px, 100px 100px; 12 height: 300px; 13 margin: 50px; 14 } 15 </style>