Posts /

css: backgrond

Twitter Facebook Google+
28 Aug 2018

CSS : background-blend-mode

   div { 

    background-repeat: no-repeat, repeat;
    background-image: url("img1.gif"), url("img2.gif");
    background-blend-mode: lighten;
    
    background-blend-mode: normal|multiply|screen|overlay|darken|lighten|color-dodge|saturation|color|luminosity;
}

background-blend-mode 속성

이 background-blend-mode속성은 각 배경 레이어 (색상 및 / 또는 이미지)의 혼합 모드를 정의합니다.

아래 backgrpund 관련 여러 속성을 축약한 축약속성이며,

IE8이하 버전에서는 하나의 요소에 여려 배경이미지를 지원하지 않습니다.


Twitter Facebook Google+