pause-rendering-ref.html (554B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <style> 5 6 * { box-sizing: border-box; } 7 div { position: relative; z-index: 0; contain: strict; 8 display: inline-block; background: green; 9 left: 30px; top: 30px; width: 120px; height: 120px; } 10 #scope { background: #eee; 11 left: 40px; top: 40px; width: 490px; height: 190px; } 12 #tr { background: orange; left: 60px; } 13 p { position: absolute; left: 100px; top: 5px; font-size: 30px; } 14 15 </style> 16 </head> 17 <body> 18 <div id=scope> 19 <div></div><div id=tr></div> 20 </div> 21 <p id=outside>TRANSITIONING</p> 22 </body> 23 </html>