新!我的 44 頁電子書「44 分鐘學會 CSS」出爐了! 😃

現在就取得 →

#grid-template-rows

定義網格容器的列。你可以使用關鍵字(例如 auto)或長度(例如 10px)來指定列的寬度。列的數量由以空白分隔的清單中定義的數量決定。

預設值 grid-template-rows: none;

未定義任何列。

grid-template-rows: 120px auto 3rem;

您可以混合單位

grid-template-rows: 20px 1fr 2fr;

您可以使用fr彈性單位來分配剩餘空間給所有彈性列。