--- id: css-table-size title: "CSS Table Size" category: "Frontend" status: "draft" verification_status: "conceptual" canonical_id: "" aliases: ["table width", "table height", "CSS table sizing", "full-width table", "table width 100%"] 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", "table", "width", "height"] raw_sources: ["https://www.w3schools.com/css/css_table_size.asp"] applied_in: [] github_commit: "" --- # [[CSS Table Size]] ## 🎯 ν•œ 쀄 톡찰 (One-line insight) The `width` and `height` properties control the size of a table and its cells, accepting percentage, fixed-pixel, or `auto` values. [S1] ## 🧠 핡심 κ°œλ… (Core concepts) - **`width` sets table width** β€” the CSS `width` property is used to set the width of a table. [S1] - **Three width units** β€” width can be set in percent (%), as a fixed length (px), or by the `auto` keyword. [S1] - **`height` sets table height** β€” the CSS `height` property is used to set the height of a table; it can likewise be set in percent (%), as a fixed length (px), or by `auto`. [S1] - **Auto = browser calculates** β€” using `width: auto;` lets the browser calculate the width. [S1] ## 🧩 μΆ”μΆœλœ νŒ¨ν„΄ (Extracted patterns) - **Full-width pattern** β€” `width: 100%;` makes a table span the entire screen. [S1] - **Fractional-width pattern** β€” `width: 50%;` makes a table span half the page. [S1] - **Cell sizing** β€” apply `height` to `th` (or `td`) to size individual cells, e.g. set header height. [S1] ## πŸ“– μ„ΈλΆ€ λ‚΄μš© (Details) **CSS Table Width** The CSS `width` property is used to set the width of a table. The width can be set: in percent (%), as a fixed length (px), or by the `auto` keyword. [S1] To create a table that spans the entire screen (full-width), use `width: 100%;`: [S1] ```css table { width: 100%; } ``` To create a table that spans half the page, use `width: 50%;`: [S1] ```css table { width: 50%; } ``` To create a table with a fixed width, use `width: 500px`: [S1] ```css table { width: 500px; } ``` To let the browser calculate the width, use `width: auto;`: [S1] ```css table { width: auto; } ``` **CSS Table Height** The CSS `height` property is used to set the height of a table. The height can be set: in percent (%), as a fixed length (px), or by the `auto` keyword. The example below sets the height of the table headers (``) to 70px: [S1] ```css th { height: 70px; } ``` ## πŸ› οΈ 적용 사둀 (Applied in summary) The page's own examples are the applied cases: full-width (`100%`), half-width (`50%`), fixed (`500px`), and `auto` table widths, plus a 70px header height. No external project/commit applications found in the source. ## πŸ’» μ½”λ“œ νŒ¨ν„΄ (Code patterns) Set table width (language: CSS): ```css table { width: 100%; } ``` Set cell height (language: CSS): ```css th { height: 70px; } ``` ## βš–οΈ λͺ¨μˆœ 및 μ—…λ°μ΄νŠΈ (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 Table Styling]], [[CSS Table Alignment]], [[CSS Table Responsive]], [[CSS Max Width]] - **μ°Έμ‘° λ§₯락:** Referenced whenever controlling the dimensions of an HTML table or its cells. ## πŸ“š 좜처 (Sources) - [S1] W3Schools β€” CSS Table Size β€” https://www.w3schools.com/css/css_table_size.asp ## πŸ“ λ³€κ²½ 이λ ₯ (Change history) - 2026-06-23: Initial draft synthesized from the W3Schools "CSS Table Size" page (Astra wiki-curation, P-Reinforce v3.1 format).