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

CSS3 다중 열 열 범위 속성

<시간/>

column-span 속성은 열 사이의 범위를 지정하는 데 사용됩니다. CSS −

를 사용하여 열 범위 속성을 구현하기 위해 다음 코드를 실행할 수 있습니다.

예시

<html>
<head>
<style>
   .multi {
      /* Column count property */
      -webkit-column-count: 4;
      -moz-column-count: 4;
      column-count: 4;

      /* Column gap property */
      -webkit-column-gap: 40px;
      -moz-column-gap: 40px;
      column-gap: 40px;

      /* Column style property */
      column-rule-style: solid;
      column-rule-color: #ff00ff;

      /* Colum width property */
      -webkit-column-rule-width: 5px;
      -moz-column-rule-width: 5px;
      column-rule-width: 5px;

      /* Column span property */
      -webkit-column-span: all; /* Chrome, Safari, Opera */
      column-span: all;
   }
</style>
</head>

<body>
<div class = "multi">
<h2>This is demo text</h2>
   Tutorials Point originated from the idea that there exists a class of readers
   who respond better to online content and prefer to learn new skills at their
   own pace from the comforts of their drawing rooms. The journey commenced with
   a single tutorial on HTML in 2006 and elated by the response it generated, we
   worked our way to adding fresh tutorials to our repository which now proudly
   flaunts a wealth of tutorials and allied articles on topics ranging from
   programming languages to web designing to academics and much more.
</div>
</body>
</html>

출력

CSS3 다중 열 열 범위 속성