scroll-marker-004-ref.html (866B)
1 <!doctype html> 2 <meta charset="utf-8"> 3 <title>CSS Reference File: scroll container with ::scroll-marker-group after between other blocks</title> 4 <style> 5 #scroller { 6 width: 600px; 7 height: 300px; 8 overflow: scroll; 9 } 10 11 #scroller div { 12 width: 600px; 13 height: 300px; 14 margin-bottom: 20px; 15 background: green; 16 } 17 18 #scroll-marker-group { 19 height: 40px; 20 border: 3px solid black; 21 padding: 5px; 22 display: flex; 23 } 24 25 #scroll-marker-group>span { 26 width: 10px; 27 height: 10px; 28 background-color: blue; 29 border-radius: 100%; 30 } 31 32 #scroll-marker-group>#first { 33 background-color: purple; 34 margin-right: 4px; 35 } 36 </style> 37 <div>TEST BLOCK BEFORE</div> 38 <div id="scroller"> 39 <div></div> 40 <div></div> 41 </div> 42 <div id="scroll-marker-group"> 43 <span id="first"></span> 44 <span></span> 45 </div> 46 <div>TEST BLOCK AFTER</div>