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

CSS로 열 사이의 간격 지정

<시간/>

column-gap 속성을 사용하여 열 사이의 간격을 설정합니다. 다음 코드를 실행하여 값이 50px인 column-gap 속성을 구현할 수 있습니다.

예시

<!DOCTYPE html>
<html>
   <head>
      <style>
         .demo {
            column-count: 4;
            column-gap: 50px;
         }
      </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>