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
Từ khóa » Html Css Two Column List
-
How To Create A Two Column Layout - W3Schools
-
CSS Multiple Columns - W3Schools
-
How To Display An Unordered List In Two Columns? - Stack Overflow
-
How To Display Unordered List In Two Columns - W3docs
-
Display An Unordered List In Two Columns - HTML CSS CSS Layout
-
An Adventure In CSS With Column Lists | You've Been Haacked
-
Two Column Lists Using HTML - Matt Danner
-
Split List Into Columns Using CSS - Create Two, Three Or Multi-column List
-
Columns - CSS: Cascading Style Sheets - MDN Web Docs - Mozilla
-
CSS Multi-column Layout - CSS: Cascading Style Sheets | MDN
-
How To Display A List In N Columns Format ? - GeeksforGeeks
-
Multiple Column Lists Using One
- - CSS Wizardry
-
List In 2 Columns - CodePen
-
How To Make Two Column List Items Using Basic CSS