scrollbar-after-remove-resize-ref.html (410B)
1 <!doctype html> 2 <html> 3 <style> 4 #scroller { 5 width: 300px; 6 height: 300px; 7 overflow-y: scroll; 8 border: 1px solid black; 9 } 10 11 #scroller::-webkit-scrollbar { 12 background: pink; 13 } 14 #scroller::-webkit-scrollbar-thumb { 15 background: orange; 16 } 17 18 #content { 19 width: 100%; 20 height: 150%; 21 background: lightgray; 22 } 23 </style> 24 25 <div id="scroller"> 26 <div id="content"></div> 27 </div>