I did lesson 9 (grid) with Mosh with no problem. The grid badge was there, the grid overlay section of the inspect layout tab showed the element with the grid. The grid worked!
Then for practice, I created a new html file with a grid, but with no success. The grid badge didn’t show up in my second html file like it did in the first one that I created following along with Mosh, the grid overlay section of the inspect layout tab said ‘No grid layouts found on this page’, and I have no grid on the page.
This is my markup:
and my CSS:
.page{
display: grid;
grid-template-rows: 200px 200px 200px;
grid-template-columns: 200px 200px;
margin: 3px;
border: 3px solid darkmagenta;
}
.page{
display: grid;
grid-template-rows: 200px 200px 200px;
grid-template-columns: 200px 200px;