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

Đặt màu của quy tắc giữa các cột bằng CSS

Để đặt màu giữa các cột, hãy sử dụng column-rule-color bất động sản. Bạn có thể thử chạy mã sau để triển khai column-rule-color tài sản.

Cùng với đó, chúng tôi cũng sẽ đặt kiểu của quy tắc cột:

Ví dụ

<!DOCTYPE html>
<html>
   <head>
      <style>
         .demo {
            column-count: 4;
            column-gap: 50px;
            column-rule-color: orange;
            column-rule-style: dashed;
         }
     </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.  
         This is demo text. This is demo text.
      </div>
   </body>
</html>