Question 23 Using this code, how many rows does the grid have? <div id="grid-container"> <div>A</div>
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
Question 23 Using this code, how many rows does the grid have? <div id="grid-container"> <div>A</div>
Question 23 Using this code, how many rows does the grid have? <div id="grid-container"> <div>A</div> <div>B</div> <div>C</div> <div>D</div> <div>E</div> <div>F</div> <div>G</div> <div>H</div> </div> #grid-container { display: grid; grid-template-columns: 40% 25% 10% auto; } 2 01 *