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

Đặt số lượng cột mà một phần tử sẽ trải qua bằng CSS

Để đặt số lượng cột mà một phần tử sẽ kéo dài, hãy sử dụng thuộc tính column-span. Bạn có thể thử chạy mã sau để triển khai thuộc tính cột-span:

Ví dụ

<!DOCTYPE html>
<html>
   <head>
      <style>
         .demo {
            column-count: 4;
            column-rule-color: maroon;
            column-rule-style: dashed;
         }
         h1 {
            column-span: all;
         }
      </style>
   </head>
   <body>
      <div class = "demo">
         <h1>This is our heading.</h1>
         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>