CSS 3 columns

Source: Internet
Author: User

CSS3 Create an equal-height text column through Column-count (several columns), Column-width, and column-gap (spacing between columns) property implementation

The following 3 columns are implemented, with 2em spacing between columns (although this is not very extensive for browser support) so far IE9 (including IE9) does not support

Code

. col{
-moz-column-count:3;
-moz-column-width:14em;
-moz-column-gap:2em;
-moz-column-rule:1px solid #ccc;
-webkit-column-count:3;
-webkit-column-width:14em;
-webkit-column-gap:2em;
-webkit-column-rule:1px solid #ccc;
Column-count:3;
Column-width:14em;
Column-gap:2em;
column-rule:1px solid #ccc;
}

First Look at:

CSS 3 columns

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.