Page 1 of 1

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
by answerhappygod
Question 23 Using This Code How Many Rows Does The Grid Have Lt Div Id Grid Container Gt Lt Div Gt A Lt Div Gt 1
Question 23 Using This Code How Many Rows Does The Grid Have Lt Div Id Grid Container Gt Lt Div Gt A Lt Div Gt 1 (45.55 KiB) Viewed 36 times
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 *