CSS3-다중 열
CSS3는 신문 구조로 텍스트를 정렬하기 위해 다중 열을 지원했습니다.
아래와 같이 가장 일반적으로 사용되는 다중 열 속성 중 일부-
Sr. 아니. | 가치 및 설명 |
---|---|
1 | column-count 요소를 분할해야하는 열 수를 계산하는 데 사용됩니다. |
2 | column-fill 열을 채우는 방법을 결정하는 데 사용됩니다. |
삼 | column-gap 기둥 사이의 간격을 결정하는 데 사용됩니다. |
4 | column-rule 규칙 수를 지정하는 데 사용됩니다. |
5 | rule-color 열 규칙 색상을 지정하는 데 사용됩니다. |
6 | rule-style 열에 대한 스타일 규칙을 지정하는 데 사용됩니다. |
7 | rule-width 너비를 지정하는 데 사용됩니다. |
8 | column-span 열 사이의 범위를 지정하는 데 사용됩니다. |
예
아래 예는 새로운 종이 구조로 텍스트 배열을 보여줍니다.
<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 */
-webkit-column-rule-style: solid;
-moz-column-rule-style: solid;
column-rule-style: solid;
}
</style>
</head>
<body>
<div class = "multi">
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>
다음 결과가 생성됩니다-
사용자가 줄없이 새 종이로 텍스트를 만들고 싶다면 아래와 같이 스타일 구문을 제거하면됩니다.
.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;
}
다음 결과가 생성됩니다-