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

Cách chỉ định số cột mà một phần tử nên được chia thành bằng CSS

Để chỉ định số cột mà một phần tử sẽ được chia thành, hãy sử dụng thuộc tính column-count.

Bạn có thể thử chạy đoạn mã sau để triển khai thuộc tính số cột có 4 cột

Ví dụ

<!DOCTYPE html>
<html>
   <head>
      <style>
         .demo {
            column-count: 4;
         }
      </style>
   </head>
   <body>
      <div class = "demo">
         This is demo text. This is demo text. This is demo text.
         This is demo text. This is demo text. This is demo text.
         This is demo text. This is demo text. This is demo text.
         This is demo text. This is demo text. This is demo text.
         This is demo text. This is demo text. This is demo text.
         This is demo text. This is demo text. This is demo text.
         This is demo text. This is demo text. This is demo text.
         This is demo text. This is demo text. This is demo text.
         This is demo text. This is demo text. This is demo text.
         This is demo text.
      </div>
   </body>
</html>