Horje
css filter Code Example
filter for css white color
.custom-2 {
  filter:  brightness(0) invert(1);
}
invert css
.image {
filter: invert(1);
 }
css image filter black and white
 -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
how to filter css red
/*Add this to a CSS selector to turn it red*/
filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(600%) contrast(0.8);
blur css
.mydiv { filter: grayscale(50%) }

/* Graut alle Bilder um 50% aus und macht sie um 10px unscharf */
img {
  filter: grayscale(0.5) blur(10px);
}
css filter
<style>
    img {
        filter: grayscale(0.5);
        filter: blur(5px);
        filter: brightness(0.8);
        filter: contrast(0.8);
    }
</style>

<img src="./sample.jpg">




Css

Related
opacity animation css Code Example opacity animation css Code Example
ul list style type image Code Example ul list style type image Code Example
select html stop blue border Code Example select html stop blue border Code Example
how to remove margin of body Code Example how to remove margin of body Code Example
tailwindcss init full Code Example tailwindcss init full Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
13