feGaussianBlurThe simplest filter: blurs the element.
feDropShadowCreates a shadow behind the element.
feGaussianBlur + feMergeCombines a blurred copy with the original for a glow.
feConvolveMatrixUses a convolution matrix to create a 3D embossed look.
feColorMatrixTransforms colors using a mathematical matrix.
1. Define filters in SVG: Put filter definitions inside <svg><defs>
2. Apply with CSS: Use filter: url(#filterName) to apply to any HTML element
3. Chain effects: Multiple filter primitives in one filter create complex effects
4. Hardware accelerated: These run on the GPU for smooth performance!