π»Coding/π CSS
[css] css background : transparent λ? | background : none μ΄λ μ°¨μ΄μ
μμμ
2022. 9. 2. 15:12
728x90
λ°μν
[css]
css background : transparent λ?
/
background : none μ΄λ μ°¨μ΄μ μ?
background: none;
background: transparent;
β background : transparent λ?
→
β css background : transparent vs background : none ??
→ κ°λ¨νκ² backgroundμ μμμ μμ¨ λ μ°λ¦¬λ none(μμ κΈ°), transparent(ν¬λͺ )μ μ¬μ©ν μ μμ
→ μ΄ λμ μ°¨μ΄μ μ μλ €λ©΄ background μμ±μ μμμΌνκΈ° λλ¬Έμ μλμμ μμΈν μ€λͺ !
β μ΄λ€ κ²½μ°μ μ¬μ©ν κΉ?
→ λ°°κ²½μμ΄ μ§μ λ μμμ λ°°κ²½μ μμ μΌνλ κ²½μ°μ μ¬μ©
π£ background μμ±
background-color
background-image
background-repeat
background-attachment
background-position
background-size
π£ νμ€λ‘ μμ±νλ λ°©λ²
background : color image repeat attachment position / size;
β μμμ positionκ³Ό sizeλ λ°°κ²½μ΄λ―Έμ§λ₯Ό λ£μΌλ©΄ μ¬μ©νλ μμ±
π none μ΄λΌλ μμ±κ°μ background-imageμ μ¬μ©νλ κ° μλμ κ°μ΄ μ¬μ©ν©λλ€!
/* none μ¬μ© μ½λ */
background-color: initial;
background-image: none;
background-repeat: initial;
background-attachment: initial;
background-position: initial;
π‘ transparent μ΄λΌλ μμ±κ°μ background-color μ μ¬μ©νλ κ° μλμ κ°μ΄ μ¬μ©ν©λλ€!
/* transparent μ¬μ© μ½λ */
background-color: transparent;
background-image: initial;
background-repeat: initial;
background-attachment: initial;
background-position: initial;
728x90
λ°μν