css - Is it possible to -webkit-filter: invert(); everything but images and videos -
i'm using code below change invert color of on page, undesirable pictures , videos inverted.
html { -webkit-filter: invert() hue-rotate(180deg) brightness(105%) contrast(105%); }
i'm wondering if it's possible filter excluding images , videos? pretty new me there obvious answer, can't think of it.
thanks!
try demo
iframe, img, html { -webkit-filter: invert() hue-rotate(180deg) brightness(105%) contrast(105%); }
Comments
Post a Comment