Change color of PNG image via CSS?

后端 未结 16 1628
自闭症患者
自闭症患者 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:58

    When changing a picture from black to white, or white to black the hue rotate filter does not work, because black and white are not technically colors. Instead, black and white color changes (from black to white or vice-versa) must be done with the invert filter property.

    .img1 { filter: invert(100%); }

提交回复
热议问题