Question 23 Using this code, how many rows does the grid have? <div id="grid-container"> <div>A</div>
Posted: Fri Jul 08, 2022 7:26 am
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 *