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

Popular posts from this blog

javascript - AngularJS custom datepicker directive -

javascript - jQuery date picker - Disable dates after the selection from the first date picker -