[CSS] svg 배경이미지 색상 변경하기 (Feat. mask-image)

seung·2022년 1월 17일
1

CSS

.icon {
    height: 1rem;
    width: 1rem;

	// 지원안되는 브라우저 (색상변경은 안됨)
    background-image: url(/img/chevron-thin-right.svg);
    background-size: cover;
    
    // 지원되는 브라우저
    @supports (-webkit-mask-image: url()) or (mask-image: url()) {
      background-color: orange;
      -webkit-mask-image: url(../img/chevron-thin-right.svg);
      mask-image: url(../img/chevron-thin-right.svg);
      -webkit-mask-size: cover;
      mask-size: cover;
      background-image: none;
    }
}
profile
🌸 좋은 코드를 작성하고 싶은 프론트엔드 개발자 ✨

0개의 댓글

관련 채용 정보