--- 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).