grid-template-rows 사용 CSS 그리드 레이아웃의 행 수를 정의하는 속성입니다.
예시
다음 코드를 실행하여 행 수를 설정할 수 있습니다.
<!DOCTYPE html> <html> <head> <style> .container { display: grid; background-color: gray; grid-template-rows: 120px 90px 100px; padding: 20px; grid-gap: 20px; } .container > div { background-color: yellow; 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>