supports-rule-ref.html (529B)
1 <!DOCTYPE html> 2 <title>@supports with nesting</title> 3 <link rel="author" title="Matthieu Dubet" href="mailto:m_dubet@apple.com"> 4 <link rel="help" href="https://drafts.csswg.org/css-nesting-1/"> 5 <style> 6 .test { 7 background-color: green; 8 width: 100px; 9 height: 100px; 10 display: grid; 11 } 12 13 body * + * { 14 margin-top: 8px; 15 } 16 </style> 17 <body> 18 <p>Tests pass if <strong>block is green</strong></p> 19 <div class="test"></div> 20 <div class="test"></div> 21 <div class="test"></div> 22 <div class="test"></div> 23 </body>