Posts by Eduardo Neumann • 3 points
1 post
-
0
votes1
answer51
viewsQ: <footer> only occupies the first 3 columns created in the CSS Grid. How do I occupy the 4 screen columns?
body { margin: 0; padding: 0; box-sizing: border-box; background-color: white; } div.container { display: grid; grid-template-columns: 3fr 1fr; grid-template-rows: 20vh 70vh 10vh;…