Change color of PNG image via CSS?

后端 未结 16 1649
自闭症患者
自闭症患者 2020-11-22 07:33

Given a transparent PNG displaying a simple shape in white, is it possible to somehow change the color of this through CSS? Some kind of overlay or what not?

16条回答
  •  爱一瞬间的悲伤
    2020-11-22 07:59

    I found this while googling, I found best working for me...

    HTML

    CSS

    .img {
      background-color: red;
      width: 60px;
      height: 60px;
       -webkit-mask-image: url('http://i.stack.imgur.com/gZvK4.png');
    }
    

    http://jsfiddle.net/a63b0exm/

提交回复
热议问题