column-empty-grid-lanes-container-002-ref.html (392B)
1 <!DOCTYPE html> 2 <html> 3 <link rel="help" href="https://drafts.csswg.org/css-grid-3"> 4 <link rel="author" title="Celeste Pan" href="mailto:celestepan@microsoft.com"> 5 <style> 6 .empty-container { 7 display: grid; 8 padding: 20px; 9 background: gray; 10 }; 11 </style> 12 <body> 13 <p>Test that an empty grid-lanes container still renders padding.</p> 14 <div class="empty-container"> 15 </div> 16 </body> 17 </html>