CSS Filter Generator
Create CSS image filter effects visually — blur, brightness, contrast, grayscale and more.
① Drag sliders to adjust filters ② Upload your image to preview ③ Copy the CSS
filter: none;
backdrop-filter: none;
What is the CSS filter property?
The CSS filter property applies graphical effects to any HTML element — images, divs, videos, SVGs, or entire sections. It supports nine functions: blur(), brightness(), contrast(), grayscale(), sepia(), hue-rotate(), invert(), opacity(), and saturate(). Multiple filters are chained space-separated: filter: brightness(1.2) contrast(1.1) grayscale(0.3) — order matters, as they are applied left to right. The property is GPU-accelerated in all modern browsers. Note: filter creates a new stacking context, which can affect z-index behavior of child elements. For frosted-glass overlays use the related backdrop-filter property instead.