CSS3 - 多列


CSS3支持多栏将文本排列为报纸结构。

一些最常用的多列属性如下所示 -

先生。 价值与描述
1

列数

用于计算该元素应划分的列数。

2

列填充

用于决定如何填充列。

3

柱间隙

用于决定列之间的间隙。

4

列规则

用于指定规则的数量。

5

规则颜色

用于指定列线颜色。

6

规则式

用于指定列的样式规则。

7

规则宽度

用于指定宽度。

8

列跨度

用于指定列之间的跨度。

例子

下面的示例显示了作为新纸张结构的文本排列。

<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;
}

它将产生以下结果 -