anchor-in-css-min-max-function-ref.html (399B)
1 <!DOCTYPE html> 2 3 <style> 4 .container { 5 display: grid; 6 grid-template-columns: repeat(3, 100px); 7 gap: 10px; 8 } 9 10 .box { 11 width: 100px; 12 height: 100px; 13 } 14 15 .green { 16 background-color: green; 17 } 18 </style> 19 20 <p>The test passes if there are three green boxes with no red.</p> 21 22 <div class="container"> 23 <div class="box green"></div> 24 <div class="box green"></div> 25 <div class="box green"></div> 26 </div>