OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <html> | |
3 <head> | |
4 <link href="resources/grid.css" rel="stylesheet"> | |
5 <style type="text/css"> | |
6 .grid { | |
7 grid-definition-columns: 1fr; | |
8 } | |
9 </style> | |
10 </head> | |
11 <body> | |
12 <p>Flex column should use all the available width and you should not see the grid background (grey at the end).</p> | |
13 <div class="grid"> | |
14 <div class="firstRowFirstColumn">grid item</div> | |
15 </div> | |
16 </body> | |
17 </html> | |
OLD | NEW |