overflow-scroll-resize-visibility-hidden.html (629B)
1 <!DOCTYPE html> 2 <title>CSS Overflow: overflow: scroll with resize: both and visibility: hidden</title> 3 <link rel="help" href="https://drafts.csswg.org/css-overflow-3#propdef-overflow"> 4 <link rel="match" href="overflow-scroll-resize-visibility-hidden-ref.html"> 5 <style> 6 .scroller { 7 overflow: scroll; 8 width: 100px; 9 height: 100px; 10 resize: both; 11 visibility: hidden; 12 } 13 .content { 14 width: 1000px; 15 height: 1000px; 16 background: green; 17 visibility: visible; 18 } 19 </style> 20 <div class="scroller"> 21 <div class="content"></div> 22 </div> 23 <div class="scroller" style="will-change: transform"> 24 <div class="content"></div> 25 </div>