The blur filter add the blur effect to the element.
#example {
filter: blur(add=true, direction=90, strength=10);
}
Attribute |
Value |
Explanation |
add |
0 (false) or 1 (true) |
0 (false) = not add the original content to the blurred content
1 (true) = adds the original content to the blurred content
|
direction |
0 - 315 (45 degree increments) |
the direction of the blur
0 = top
45 = right top
90 = right
135 = right bottom
180 = bottom
225 = left bottom
270 = left
315 = left top
|
strength |
number of pixels |
the distance of the blur |
Example