grid-template-rows คุณสมบัติใช้เพื่อกำหนดจำนวนแถวในตาราง
ตัวอย่าง
คุณสามารถลองใช้รหัสต่อไปนี้เพื่อใช้คุณสมบัติ grid-template-rows -
<!DOCTYPE html> <html> <head> <style> .container { display: grid; background-color: blue; grid-template-rows: 70px 190px; padding: 20px; grid-gap: 20px; } .container > div { background-color: orange; border: 2px solid gray; padding: 35px; font-size: 30px; text-align: center; } </style> </head> <body> <h1>Game Board</h1> <div class = "container"> <div class = "ele1">1</div> <div class = "ele2">2</div> <div class = "ele3">3</div> <div class = "ele4">4</div> <div class = "ele5">5</div> <div class = "ele6">6</div> </div> </body> </html>