--- id: w3css-responsive title: "W3CSS Responsive" category: "Programming_Language" status: "draft" verification_status: "conceptual" canonical_id: "" aliases: ["12-column grid", "w3-col", "W3.CSS 반응형 유동 그리드"] duplicate_of: "" source_trust_level: "B" confidence_score: 0.88 created_at: 2026-07-04 updated_at: 2026-07-04 review_reason: "" merge_history: [] tags: ["w3css", "css-framework", "w3schools", "responsive", "grid"] raw_sources: ["https://www.w3schools.com/w3css/w3css_responsive.asp"] applied_in: [] github_commit: "" --- # [[W3CSS Responsive]] ## 🎯 한 줄 통찰 (One-line insight) The `s`/`m`/`l` column-size prefixes CASCADE upward — specifying only `s6` (small-screen 6-of-12) is enough for ALL screen sizes, while specifying only `m6` (medium) leaves SMALL screens undefined and defaulting to 100% width — meaning you only need to declare the LARGEST breakpoint tier you want to differ from full-width, not every tier explicitly. [S1] ## 🧠 핵심 개념 (Core concepts) - **12-column system** — `w3-col` defines a column; `s1`-`s12`/`m1`-`m12`/`l1`-`l12` set its width fraction for small/medium/large screens respectively (each unit ≈ 8.33%). [S1] - **Cascading defaults** — specifying only the small-screen class applies it everywhere; specifying only medium/large leaves small screens at 100% (full stack) unless also specified. [S1] - **Columns per row must sum to 12** — e.g. 6+6, 3+3+6, 9+3 — a structural rule for the grid to add up correctly. [S1] - **Mixed breakpoint combinations** — a single column can combine `l3 m6 s4` to have entirely different fractions at each screen tier simultaneously. [S1] - **`w3-hide-small` / `w3-hide-medium` / `w3-hide-large`** — hides content entirely at specific breakpoints (small <601px, large >992px). [S1] - **`w3-content`** — a centered, fixed-max-width container; override the default 980px via CSS `max-width`. [S1] ## 📖 세부 내용 (Details) - Mixed multi-tier layout: `
l3 m6 s4
l7 m3 s4
l2 m3 s4