---
id: css-multiple-columns
title: "CSS Multiple Columns"
category: "Frontend"
status: "draft"
verification_status: "conceptual"
canonical_id: ""
aliases: ["multi-column layout", "column-count", "column-gap", "newspaper columns", "CSS columns", "multicol"]
duplicate_of: ""
source_trust_level: "B"
confidence_score: 0.88
created_at: 2026-06-23
updated_at: 2026-06-23
review_reason: ""
merge_history: []
tags: ["css", "web", "frontend", "w3schools", "multi-column", "layout"]
raw_sources: ["https://www.w3schools.com/css/css3_multiple_columns.asp"]
applied_in: []
github_commit: ""
---
# [[CSS Multiple Columns]]
## π― ν μ€ ν΅μ°° (One-line insight)
The CSS Multi-column Layout Module lets you flow text into multiple columns β just like a newspaper β by setting how many columns (`column-count`) and the gap between them (`column-gap`). [S1]
## π§ ν΅μ¬ κ°λ
(Core concepts)
- **Purpose** β the CSS Multi-column Layout Module enables easy definition of multiple columns of text, just like in newspapers. [S1]
- **Column count** β `column-count` specifies the number of columns an element should be divided into. [S1]
- **Column gap** β `column-gap` specifies the gap between the columns. [S1]
- **Property family** β the module covers `column-count`, `column-gap`, `column-rule-style`, `column-rule-width`, `column-rule-color`, `column-rule`, `column-span`, and `column-width`. [S1]
## π§© μΆμΆλ ν¨ν΄ (Extracted patterns)
- **Divide-by-count pattern** β apply `column-count: N;` to any block element to split its text content into N columns automatically. [S1]
- **Control whitespace separately** β `column-gap` adjusts the spacing between columns independently of the column count. [S1]
## π μΈλΆ λ΄μ© (Details)
**CSS Multi-column Layout** [S1]
The CSS Multi-column Layout Module enables easy definition of multiple columns of text β just like in newspapers.
**CSS Multi-column Properties** [S1]
The page identifies these key properties: `column-count`, `column-gap`, `column-rule-style`, `column-rule-width`, `column-rule-color`, `column-rule`, `column-span`, and `column-width`.
**Creating Multiple Columns** [S1]
The `column-count` property specifies the number of columns an element should be divided into. The following example will divide the text in a `
` element into 3 columns:
```css
div {
column-count: 3;
}
```
**Specify the Gap Between Columns** [S1]
The `column-gap` property specifies the gap between the columns. The following example specifies a 40px gap between the columns:
```css
div {
column-gap: 40px;
}
```
**CSS Multi-columns Properties** [S1]
| Property | Description |
|----------|-------------|
| `column-count` | Specifies the number of columns an element should be divided into |
| `column-fill` | Specifies how to fill columns |
| `column-gap` | Specifies the gap between the columns |
| `column-rule` | A shorthand property for setting all the column-rule-* properties |
| `column-rule-color` | Specifies the color of the rule between columns |
| `column-rule-style` | Specifies the style of the rule between columns |
| `column-rule-width` | Specifies the width of the rule between columns |
| `column-span` | Specifies how many columns an element should span across |
| `column-width` | Specifies a suggested, optimal width for the columns |
| `columns` | A shorthand property for setting column-width and column-count |
## π οΈ μ μ© μ¬λ‘ (Applied in summary)
The page's examples are the applied cases: a `
` split into 3 columns via `column-count`, and a 40px `column-gap` between columns. No external project/commit applications found in the source.
## π» μ½λ ν¨ν΄ (Code patterns)
Divide into columns (language: CSS):
```css
div {
column-count: 3;
}
```
Set the gap between columns (language: CSS):
```css
div {
column-gap: 40px;
}
```
## βοΈ λͺ¨μ λ° μ
λ°μ΄νΈ (Contradictions & updates)
No contradictions found in the source.
## β
κ²μ¦ μν λ° μ λ’°λ
- **μν:** draft
- **κ²μ¦ λ¨κ³:** conceptual (μ€μ μ μ© μ¬λ‘ λ°κ²¬ μ applied/validatedλ‘ μΉκ²© κ°λ₯)
- **μΆμ² μ λ’°λ:** B (W3Schools β widely used educational reference, not a primary standards body)
- **μ λ’° μ μ:** 0.88
- **μ€λ³΅ κ²μ¬ κ²°κ³Ό:** μ κ· μμ± (New discovery)
## π μ§μ κ·Έλν (Knowledge Graph)
- **μμ/루νΈ:** [[CSS Tutorial]]
- **κ΄λ ¨ κ°λ
:** [[CSS Multiple Column Rules]], [[CSS Grid]], [[CSS Flexbox]], [[CSS Text]]
- **μ°Έμ‘° λ§₯λ½:** Referenced when flowing long-form text into a newspaper-style multi-column layout.
## π μΆμ² (Sources)
- [S1] W3Schools β CSS Multiple Columns β https://www.w3schools.com/css/css3_multiple_columns.asp
## π λ³κ²½ μ΄λ ₯ (Change history)
- 2026-06-23: Initial draft synthesized from the W3Schools "CSS Multiple Columns" page (Astra wiki-curation, P-Reinforce v3.1 format).