scrollbar-gutter-scroll-into-view-ref.html (555B)
1 <!doctype html> 2 <title>CSS Test Reference: scrollIntoView with scrollbar gutter on root frame viewport</title> 3 <style> 4 :root { 5 scrollbar-gutter: stable both-edges; 6 writing-mode: vertical-lr; 7 overflow: hidden; 8 } 9 10 body { 11 margin: 0; 12 } 13 14 #target { 15 width: 100px; 16 height: 100px; 17 border: 4px solid black; 18 position: absolute; 19 left: 0; 20 top: 0px; 21 background-color: lightgreen;= 22 } 23 #bg { 24 background-color: khaki; 25 width: 200vw; 26 height: 400vh; 27 } 28 </style> 29 <div id="bg"></div> 30 <div id="target"></div>