CSS column-count Property

CSS column-count Property

 

CSS column-count Property


The column-count property specifies the number of columns that divide the content of an element.

The column-count property is one of the CSS3 properties.

It has two values: auto and number. "Auto" is the default value of this property. The number of columns is determined by other properties such as column-width. "Number" value specifies the number of columns into which the content of the element should have flowed.

Initial Valueauto
Applies toBlock containers except for table wrapper boxes.
InheritedNo.
AnimatableYes. The number of columns is animated.
VersionCSS3
DOM Syntaxobject.style.column-count = "4";

Syntax

column-count: number | auto | initial | inherit;

Example of the column-count property:

<!DOCTYPE html>
<html>
  <head>
    <title>Title of the document</title>
    <style>
      div {
        -webkit-column-count: auto;
        /* Chrome, Safari, Opera */
        -moz-column-count: auto;
        /* Firefox */
        column-count: 3;
      }
    </style>
  </head>
  <body>
    <h2>Column-count property example</h2>
    <div>
      Lorem Ipsum is dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
    </div>
  </body>
</html>

Example of the column-count property with the column specified as 7: 

<!DOCTYPE html>
<html>
  <head>
    <title>Title of the document</title>
    <style>
      div {
        -webkit-column-count: 7;
        /* Chrome, Safari, Opera */
        -moz-column-count: 7;
        /* Firefox */
        column-count: 7;
      }
    </style>
  </head>
  <body>
    <h2>Column-count property example</h2>
    <div>
      Lorem Ipsum is dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. It is a great fact that a reader will be distracted by the readable content of a page when looking at its layout.
    </div>
  </body>
</html>

Values

ValueDescription
autoThe number of columns is specified by other properties. This is the default value of this property.
numberSpecifies the number of columns in which the content of the elements should be written.
initialSets the property to its default value.
inheritInherits the property from its parent element.
Reactions

Post a Comment

0 Comments

close