Change color of PNG image via CSS?

后端 未结 16 1615
自闭症患者
自闭症患者 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 08:03

    The simplest one line that worked for me:

    filter: opacity(0.5) drop-shadow(0 0 0 blue);
    

    You can adjust opacity from 0 to 1 to make color lighter or darker.

提交回复
热议问题