--- id: css-rounded-borders title: "CSS Rounded Borders" category: "Frontend" status: "draft" verification_status: "conceptual" canonical_id: "" aliases: ["border-radius", "CSS rounded borders", "rounded corners", "round border", "corner radius"] duplicate_of: "" source_trust_level: "B" confidence_score: 0.86 created_at: 2026-06-23 updated_at: 2026-06-23 review_reason: "" merge_history: [] tags: ["css", "web", "frontend", "w3schools", "border", "border-radius"] raw_sources: ["https://www.w3schools.com/css/css_border_rounded.asp"] applied_in: [] github_commit: "" --- # [[CSS Rounded Borders]] ## 🎯 ν•œ 쀄 톡찰 (One-line insight) The `border-radius` property is used to add rounded corners to an element, with larger radius values producing rounder corners. [S1] ## 🧠 핡심 κ°œλ… (Core concepts) - **`border-radius`** is used to add rounded borders to an element. [S1] - **Visual progression** β€” the page demonstrates corners ranging from a normal (square) border through increasingly rounded variants ("Normal border", "Round border", "Rounder border", "Roundest border"). [S1] - **Combined with a border** β€” rounded corners are shown applied on top of a defined border (e.g. `2px solid red`). [S1] ## 🧩 μΆ”μΆœλœ νŒ¨ν„΄ (Extracted patterns) - **Border-plus-radius** β€” pair a `border` declaration with a `border-radius` value to round the corners of a bordered element. [S1] - **Radius magnitude controls roundness** β€” increasing the radius value increases the visible corner curvature. [S1] ## πŸ“– μ„ΈλΆ€ λ‚΄μš© (Details) **CSS Rounded Borders** [S1] The `border-radius` property is used to add rounded borders to an element. **Example** β€” a paragraph with a solid red border and rounded corners: [S1] ```css p { border: 2px solid red; border-radius: 5px; } ``` The page visually shows several levels of rounding labelled "Normal border", "Round border", "Rounder border", and "Roundest border". The exact CSS source for each individual labelled variation (beyond the `5px` example above) was rendered as images in the page and is **Not found in source**. [S1] ## πŸ› οΈ 적용 사둀 (Applied in summary) The page's own applied example is the single paragraph rule above, combining a `2px solid red` border with a `5px` `border-radius`. No external project/commit applications found in the source. ## πŸ’» μ½”λ“œ νŒ¨ν„΄ (Code patterns) Rounded border on a bordered element (language: CSS): ```css p { border: 2px solid red; border-radius: 5px; } ``` ## βš–οΈ λͺ¨μˆœ 및 μ—…λ°μ΄νŠΈ (Contradictions & updates) No contradictions found in the source. ## βœ… 검증 μƒνƒœ 및 신뒰도 - **μƒνƒœ:** draft - **검증 단계:** conceptual (μ‹€μ œ 적용 사둀 발견 μ‹œ applied/validated둜 승격 κ°€λŠ₯) - **좜처 신뒰도:** B (W3Schools β€” widely used educational reference, not a primary standards body) - **μ‹ λ’° 점수:** 0.86 - **쀑볡 검사 κ²°κ³Ό:** μ‹ κ·œ 생성 (New discovery) ## πŸ”— 지식 κ·Έλž˜ν”„ (Knowledge Graph) - **μƒμœ„/루트:** [[CSS Tutorial]] - **κ΄€λ ¨ κ°œλ…:** [[CSS Border Shorthand]], [[CSS Border Style]], [[CSS Border Width]], [[CSS Border Color]] - **μ°Έμ‘° λ§₯락:** Applied on top of a defined border to soften an element's corners. ## πŸ“š 좜처 (Sources) - [S1] W3Schools β€” CSS Rounded Borders β€” https://www.w3schools.com/css/css_border_rounded.asp ## πŸ“ λ³€κ²½ 이λ ₯ (Change history) - 2026-06-23: Initial draft synthesized from the W3Schools "CSS Rounded Borders" page (Astra wiki-curation, P-Reinforce v3.1 format).