perspective-overflow-2-ref.html (502B)
1 <!DOCTYPE html> 2 <html> 3 4 <head> 5 <meta charset="utf-8"> 6 <title>Transform Overflow Bug</title> 7 <style> 8 .container { 9 width: 100px; 10 height: 100px; 11 overflow: scroll; 12 scrollbar-width: none; 13 perspective: 1px; 14 } 15 16 .inner { 17 background-color: red; 18 width: 200px; 19 height: 200px; 20 } 21 </style> 22 </head> 23 24 <body> 25 <div class="container"> 26 <p class="inner"></p> 27 </div> 28 </body> 29 </html>