animation-trigger-fill-mode-none-ref.html (585B)
1 <!DOCTYPE html> 2 <html> 3 <body> 4 <style> 5 .scroller { 6 overflow-y: scroll; 7 border: solid 1px; 8 place-self: center; 9 height: 300px; 10 width: 200px; 11 position: relative; 12 } 13 .target { 14 height: 100px; 15 width: 100%; 16 background-color: blue; 17 } 18 .space { 19 height: 250px; 20 width: 50%; 21 } 22 23 </style> 24 <div id="scroller" class="scroller"> 25 <div class="space"></div> 26 <div id="target" class="target"></div> 27 <div class="space"></div> 28 </div> 29 </body> 30 </html>