Computer >> 컴퓨터 >  >> 프로그램 작성 >> CSS

CSS를 사용하여 열 사이의 규칙 색상 설정

<시간/>

열 사이의 색상을 설정하려면 column-rule-color를 사용하세요. 재산. 다음 코드를 실행하여 column-rule-color를 구현할 수 있습니다. 재산.

이를 통해 열 규칙의 스타일도 설정합니다.

<!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>