anchored-fallback-style-containment.html (579B)
1 <!DOCTYPE html> 2 <title>CSS Anchor Positioning Test: container-type:anchored contains style</title> 3 <link rel="help" href="https://drafts.csswg.org/css-anchor-position-2/#anchored-container-queries"> 4 <link rel="match" href="anchored-fallback-style-containment-ref.html"> 5 <style> 6 #generate::before { content: counter(c); } 7 </style> 8 <p>You should see the number 3 below:</p> 9 <div style="counter-reset: c 1"></div> 10 <div style="container-type: anchored; counter-increment: c"> 11 <div style="counter-increment: c"></div> 12 </div> 13 <div id="generate" style="counter-increment: c"></div>