Columns - CSS-Tricks
Có thể bạn quan tâm
With just a few CSS rules, you can create a print-inspired layout that has the flexibility of the web. It’s like taking a newspaper, but as the paper gets smaller, the columns will adjust and balance automatically allowing the content to flow naturally.
.intro { columns: 300px 2; }The columns property will accept column-count, column-width, or both properties.
columns: || ;Using both column-count and column-width is recommended to create a flexible multi-column layout. The column-count will act as the maximum number of columns, while the column-width will dictate the minimum width for each column. By pulling these properties together, the multi-column layout will automatically break down into a single column at narrow browser widths without the need of media queries or other rules.
A multi-column layout works great on block elements including lists to make a flexible navigation.
To further fine tune your multi-column layout, use break-inside on specific elements to keep them from getting stuck between columns.
Related properties
- column-count
- column-fill
- column-gap
- column-rule
- column-span
- column-width
- break-inside
More information
- CSS Multi-column Layout Module Level 1 (Working Draft)
- MDN Documention
Browser support
IE | Edge | Firefox | Chrome | Safari | Opera |
---|---|---|---|---|---|
10+ | All | 9+ | 50+ | All | 11.5+ |
Android Chrome | Android Firefox | Android Browser | iOS Safari | Opera Mobile |
---|---|---|---|---|
All | All | All | All | All |
Từ khóa » Html Flow Text Into Two Columns
-
Flow 2 Columns Of Text Automatically With CSS - Stack Overflow
-
CSS Multiple Columns - W3Schools
-
How To Create A Two Column Layout - W3Schools
-
Multi-Column Layout For Text Flow Using HTML. - Tutorialspoint
-
When And How To Use CSS Multi-Column Layout
-
CSS Multi-column Layout - CSS: Cascading Style Sheets | MDN
-
Using Multi-column Layouts - CSS: Cascading Style Sheets | MDN
-
Two Column Text Flow - CSS-Tricks
-
Use Text Columns In Webflow
-
How To Use Float And Columns To Lay Out Content With CSS
-
Flow Text In 2 Columns With Custom Style - HTML CSS
-
Multi-column Layout In CSS
-
How To Auto Flow Text Into Two Columns, Linked To A Parent? - Reddit