Search pages
Search all CSS Showcase pages by name
CSS Filters
Transform images and elements with Instagram-like effects using pure CSS. Apply blur, brightness, contrast, and more for instant visual transformation.
Basic Filter Functions
CSS filters provide graphical effects like blur, colour shifting, and more. Apply them to any element for instant visual transformation.
Original
blur(5px)
brightness(1.5)
brightness(0.5)
contrast(2)
contrast(0.5)
grayscale(1)
grayscale(0.5)
hue-rotate(90deg)
hue-rotate(180deg)
invert(1)
invert(0.5)
saturate(2)
saturate(0.5)
sepia(1)
sepia(0.5)
Advanced Filter Techniques
Combine multiple filters and use special effects to create unique visual styles.
Basic Shadow
Colour Shadow
Multiple Shadows
Vintage
Cool Tone
Warm Tone
Dramatic
Interactive Filter Playground
Experiment with different filter combinations in real-time!
Adjust Filters
.element {
filter: none;
}Before & After Comparison
Drag the slider to compare the original image with popular filter presets. See how combined filters create distinct moods.
Warm, nostalgic look with boosted contrast and subtle sepia
.element {
filter:
contrast(1.2)
brightness(1.1)
sepia(0.3)
saturate(1.4);
}Creative Filter Effects
Push the boundaries with creative filter applications and animations.
Shadow Text
Glowing Text
Blurred Text
Filter Best Practices
Performance
Filters can be GPU-intensive. Test performance, especially on mobile devices. Use will-change: filter sparingly to hint browser optimisation.
Subtlety is Key
Often, subtle filter effects work better than dramatic ones for professional designs. Small adjustments can make a big difference.
Accessibility
Ensure filtered content remains readable and doesn't rely solely on colour. Always provide sufficient contrast ratios.
Continue Your Journey
Filters mastered! Apply your skills to real-world components, or explore blend modes for even more visual effects.