CSS filter 속성을 생성하여 이미지에 블러, 밝기, 대비, 흑백 등 효과를 적용하세요. 실시간 미리보기 포함.
filter: none; 이 도구는 CSS filter 속성을 생성하여 이미지에 다양한 시각적 효과를 적용합니다. 블러, 밝기, 대비, 흑백, 색조 회전 등을 지원하며 실시간 미리보기를 제공합니다.
The CSS filter property applies graphical effects like blur, brightness, or color shifting to an element. It uses filter functions such as blur(px), brightness(%), contrast(%), grayscale(%), hue-rotate(deg), invert(%), opacity(%), saturate(%), and sepia(%). Multiple filters can be combined in a single filter declaration.
Yes. The CSS filter property supports multiple space-separated filter functions. For example: filter: blur(5px) brightness(120%) saturate(150%);. Each function is applied in order, creating combined effects. This tool lets you adjust each function independently and see the combined result in real time.
filter applies effects to the element itself (including its content and children). backdrop-filter applies effects to the area behind the element, creating frosted glass effects. This generator produces standard filter CSS. For backdrop-filter, simply change the property name in the generated code.
Yes. The generated filter syntax follows the CSS Filters standard and works in all modern browsers including Chrome, Firefox, Safari, Edge, and mobile browsers. No vendor prefixes are needed for current browser versions.