為 CSS 網格設定預設行大小


使用 grid-auto-rows 屬性為行設定預設大小。

你可以嘗試執行以下程式碼,使用 CSS 來實現 grid-auto-rows 屬性 

示例

現場演示

<!DOCTYPE html>
<html>
   <head>
      <style>
         .container {
            display: grid;
            grid-auto-rows: 60px;
            grid-gap: 10px;
            background-color: red;
            padding: 10px;
         }
         .container>div {
            background-color: yellow;
            text-align: center;
            padding:10px 0;
            font-size: 20px;
         }
      </style>
   </head>
   <body>
      <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>

更新時間:2020 年 6 月 25 日

302 瀏覽

開啟你的 職業

完成教程獲得認證

開始
廣告
© . All rights reserved.