--- id: css-image-effects title: "CSS Image Effects" category: "Frontend" status: "draft" verification_status: "conceptual" canonical_id: "" aliases: ["image opacity", "image transparency", "text on image", "image text positioning", "image effects"] duplicate_of: "" source_trust_level: "B" confidence_score: 0.85 created_at: 2026-06-23 updated_at: 2026-06-23 review_reason: "" merge_history: [] tags: ["css", "web", "frontend", "w3schools", "images", "opacity"] raw_sources: ["https://www.w3schools.com/css/css3_images_effects.asp"] applied_in: [] github_commit: "" --- # [[CSS Image Effects]] ## 🎯 ν•œ 쀄 톡찰 (One-line insight) The W3Schools "CSS Image Effects" page covers two effects: making images transparent with the `opacity` property, and overlaying text on an image positioned at the corners or center. [S1] ## 🧠 핡심 κ°œλ… (Core concepts) - **Image opacity** β€” the `opacity` property controls how transparent an image is, taking values from `0.0` (fully transparent) to `1.0` (fully opaque). [S1] - **Partial transparency** β€” values between, such as `0.5`, render the image partially see-through. [S1] - **Text on an image** β€” text can be overlaid on an image and positioned at the top left, top right, bottom left, bottom right, or centered. [S1] ## 🧩 μΆ”μΆœλœ νŒ¨ν„΄ (Extracted patterns) - **Opacity as a 0–1 dial** β€” transparency is a single continuous value where lower means more see-through, useful for hover dimming or watermark effects. [S1] - **Corner-anchored overlay** β€” positioning text over an image relies on a positioned container with the text element placed against a chosen corner or centered. [S1] ## πŸ“– μ„ΈλΆ€ λ‚΄μš© (Details) **Image opacity / transparency** The `opacity` property specifies the transparency of an image. It accepts a value from `0.0` to `1.0`: the lower the value, the more transparent the image. A value of `0.0` makes the image fully transparent, an intermediate value such as `0.5` makes it partially transparent, and `1.0` is the default (fully opaque). [S1] **Image text positioning** Text can be placed on top of an image and positioned in different spots: top left, top right, bottom left, bottom right, or centered. The fetched content describes these positioning options but does not include the inline CSS declaration blocks for each placement β€” those appear only behind the page's "Try it Yourself" examples. The exact per-position CSS is "Not found in source". [S1] > Note: The page title "CSS Image Effects" on W3Schools does NOT cover image reflection (`box-reflect`). The fetched content confirms the page is limited to image opacity/transparency and image text positioning. [S1] ## πŸ› οΈ 적용 사둀 (Applied in summary) The source's applied cases are the opacity-based transparency demos (full, partial, and full opacity) and the text-over-image positioning demos. No external project/commit applications found in the source. ## πŸ’» μ½”λ“œ νŒ¨ν„΄ (Code patterns) Image transparency dial (language: CSS): ```css img { opacity: 0.5; } ``` ## βš–οΈ λͺ¨μˆœ 및 μ—…λ°μ΄νŠΈ (Contradictions & updates) No contradictions found in the source. Note that the per-corner text-positioning CSS was not present inline in the fetched content (marked "Not found in source" above). ## βœ… 검증 μƒνƒœ 및 신뒰도 - **μƒνƒœ:** draft - **검증 단계:** conceptual (μ‹€μ œ 적용 사둀 발견 μ‹œ applied/validated둜 승격 κ°€λŠ₯) - **좜처 신뒰도:** B (W3Schools β€” widely used educational reference, not a primary standards body) - **μ‹ λ’° 점수:** 0.85 - **쀑볡 검사 κ²°κ³Ό:** μ‹ κ·œ 생성 (New discovery) ## πŸ”— 지식 κ·Έλž˜ν”„ (Knowledge Graph) - **μƒμœ„/루트:** [[CSS Tutorial]] - **κ΄€λ ¨ κ°œλ…:** [[CSS Image Hover]], [[CSS Image Filters]], [[CSS Image Styling]], [[CSS Position]] - **μ°Έμ‘° λ§₯락:** Referenced when dimming images via opacity or labeling images with overlaid text. ## πŸ“š 좜처 (Sources) - [S1] W3Schools β€” CSS Image Effects β€” https://www.w3schools.com/css/css3_images_effects.asp ## πŸ“ λ³€κ²½ 이λ ₯ (Change history) - 2026-06-23: Initial draft synthesized from the W3Schools "CSS Image Effects" page (Astra wiki-curation, P-Reinforce v3.1 format).