--- id: css-background-attachment title: "CSS Background Attachment" category: "Frontend" status: "draft" verification_status: "conceptual" canonical_id: "" aliases: ["background-attachment", "fixed background", "scroll background", "CSS background attachment", "fixed vs scroll"] 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", "background", "background-attachment"] raw_sources: ["https://www.w3schools.com/css/css_background_attachment.asp"] applied_in: [] github_commit: "" --- # [[CSS Background Attachment]] ## 🎯 ν•œ 쀄 톡찰 (One-line insight) The `background-attachment` property specifies whether a background image is `fixed` (does not scroll with the rest of the page) or `scroll` (scrolls along with the page). [S1] ## 🧠 핡심 κ°œλ… (Core concepts) - **background-attachment** β€” specifies whether the background image should scroll or be fixed. [S1] - **fixed** β€” the background image will not scroll with the rest of the page; it stays in place relative to the viewport. [S1] - **scroll** β€” the background image scrolls with the rest of the page. [S1] - **Combines with other background properties** β€” typically set alongside `background-image`, `background-repeat`, and `background-position`. [S1] ## 🧩 μΆ”μΆœλœ νŒ¨ν„΄ (Extracted patterns) - **Anchored backdrop** β€” use `fixed` to keep an image stationary while content scrolls over it. [S1] - **Flowing backdrop** β€” use `scroll` so the image moves together with the page content. [S1] ## πŸ“– μ„ΈλΆ€ λ‚΄μš© (Details) **background-attachment: fixed** Specify that the background image should be fixed (will not scroll with the rest of the page): [S1] ```css body { background-image: url("img_tree.png"); background-repeat: no-repeat; background-position: right top; background-attachment: fixed; } ``` **background-attachment: scroll** Specify that the background image should scroll with the rest of the page: [S1] ```css body { background-image: url("img_tree.png"); background-repeat: no-repeat; background-position: right top; background-attachment: scroll; } ``` **Property reference (from the page table):** [S1] | Property | Description | |----------|-------------| | `background-attachment` | Sets whether a background image is fixed or scrolls with the rest of the page | ## πŸ› οΈ 적용 사둀 (Applied in summary) The CSS rules above are the page's own demonstration examples on `body`. No external project/commit applications found in the source. ## πŸ’» μ½”λ“œ νŒ¨ν„΄ (Code patterns) Fixed (stationary) background (language: CSS): ```css body { background-image: url("img_tree.png"); background-repeat: no-repeat; background-position: right top; background-attachment: fixed; } ``` Scrolling background: ```css body { background-image: url("img_tree.png"); background-repeat: no-repeat; background-position: right top; background-attachment: scroll; } ``` ## βš–οΈ 비ꡐ 및 선택 κΈ°μ€€ (Comparison & decision criteria) - **fixed vs scroll** β€” `fixed` keeps the background image stationary (does not scroll with the rest of the page), while `scroll` makes the image scroll together with the page content. [S1] ## βš–οΈ λͺ¨μˆœ 및 μ—…λ°μ΄νŠΈ (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 Background Image]], [[CSS Background Repeat]], [[CSS Background Shorthand]], [[CSS Background Color]] - **μ°Έμ‘° λ§₯락:** Referenced when deciding whether a background image stays put or moves as the user scrolls. ## πŸ“š 좜처 (Sources) - [S1] W3Schools β€” CSS Background Attachment β€” https://www.w3schools.com/css/css_background_attachment.asp ## πŸ“ λ³€κ²½ 이λ ₯ (Change history) - 2026-06-23: Initial draft synthesized from the W3Schools "CSS Background Attachment" page (Astra wiki-curation, P-Reinforce v3.1 format).