Computer >> Máy Tính >  >> Lập trình >> CSS

Cách sử dụng thuộc tính lưới-cột-bắt đầu CSS

Đặt vị trí bắt đầu các mục lưới bằng thuộc tính lưới-cột-bắt đầu CSS.

Ví dụ

Bạn có thể thử chạy mã sau để triển khai thuộc tính lưới-cột-bắt đầu

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