Tint image using CSS without overlay

后端 未结 5 477
时光取名叫无心
时光取名叫无心 2020-12-02 20:36

Is it possible to tint an image with a specific color using CSS without an overlay in a WebKit browser?

Failed attempts

  • Managed to tin
5条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-02 20:52

    box-shadow: inset 0px 0px 64px 64px cornflowerblue, 0px 0px 4px 4px cornflowerblue;

    A tint in any color (rather than sepia or rotation filters which aren't supported everywhere) could be achieved by an inset box-shadow, in the appropriate size.

提交回复
热议问题