inline-with-offset-from-containing-block-clipped-ref.html (391B)
1 <!DOCTYPE html> 2 <html> 3 <title>View transitions: capture elements with display inline (ref)</title> 4 <link rel="help" href="https://drafts.csswg.org/css-view-transitions-1/"> 5 <style> 6 html { 7 background: pink; 8 } 9 #box { 10 will-change: opacity; 11 background: blue; 12 } 13 14 div { 15 padding-left: 8px; 16 padding-top: 8px; 17 } 18 </style> 19 20 <div> 21 <span id=box> </span> 22 </div> 23 </html>