--- id: css-outline-width title: "CSS Outline Width" category: "Frontend" status: "draft" verification_status: "conceptual" canonical_id: "" aliases: ["outline-width", "CSS outline width", "thin medium thick outline", "outline size", "outline thickness"] 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", "outline", "outline-width"] raw_sources: ["https://www.w3schools.com/css/css_outline_width.asp"] applied_in: [] github_commit: "" --- # [[CSS Outline Width]] ## 🎯 ν•œ 쀄 톡찰 (One-line insight) The `outline-width` property specifies the width of an outline, set either as a keyword (`thin`, `medium`, `thick`) or as a specific size. [S1] ## 🧠 핡심 κ°œλ… (Core concepts) - **Purpose** β€” the `outline-width` property specifies the width (thickness) of an outline. [S1] - **Keyword values** β€” `thin` (typically 1px), `medium` (typically 3px), and `thick` (typically 5px). [S1] - **Explicit size** β€” a specific size in px, pt, cm, em, etc. [S1] ## 🧩 μΆ”μΆœλœ νŒ¨ν„΄ (Extracted patterns) - **Keyword vs. explicit** β€” use `thin`/`medium`/`thick` for quick relative sizing, or a length unit when an exact thickness is required. [S1] - **Requires a style** β€” `outline-width` is only visible alongside a set `outline-style` (e.g., `solid`). [S1] ## πŸ“– μ„ΈλΆ€ λ‚΄μš© (Details) **Accepted values** The `outline-width` property specifies the outline's dimensions with these accepted values: [S1] - `thin` (typically 1px) - `medium` (typically 3px) - `thick` (typically 5px) - a specific size in px, pt, cm, em, etc. **Demo example** β€” demonstration of different outline widths, each class applying a different `outline-width` value to paragraphs styled with solid green outlines and 5px padding: [S1] ```css p { padding: 5px; outline-style: solid; outline-color: green; } p.ex1 { outline-width: thin; } p.ex2 { outline-width: medium; } p.ex3 { outline-width: thick; } p.ex4 { outline-width: 8px; } ``` ## πŸ› οΈ 적용 사둀 (Applied in summary) The four-class demo above is the page's own applied example, showing `thin`, `medium`, `thick`, and an explicit `8px` outline. No external project/commit applications found in the source. ## πŸ’» μ½”λ“œ νŒ¨ν„΄ (Code patterns) Set outline width by keyword or length (language: CSS): ```css p.ex2 { outline-style: solid; outline-width: medium; } p.ex4 { outline-style: solid; outline-width: 8px; } ``` ## βš–οΈ λͺ¨μˆœ 및 μ—…λ°μ΄νŠΈ (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 Outline Style]], [[CSS Outline Color]], [[CSS Box Model]] - **μ°Έμ‘° λ§₯락:** Referenced when adjusting the thickness of an element's outline. ## πŸ“š 좜처 (Sources) - [S1] W3Schools β€” CSS Outline Width β€” https://www.w3schools.com/css/css_outline_width.asp ## πŸ“ λ³€κ²½ 이λ ₯ (Change history) - 2026-06-23: Initial draft synthesized from the W3Schools "CSS Outline Width" page (Astra wiki-curation, P-Reinforce v3.1 format).