In Summary
This example demonstrates using CSS Filters on the parent div
, to transform all contained elements, including border, image, background color and text.
CSS
div.example {
filter: blur(2px);
}
Syntax blur(length);
Step by Step
HTML
Simplified<div class="example">
<figure>
<img src="images/the-hare.gif" />
<figcaption>The hare takes aim</figcaption>
</figure>
</div>
CSS
div.example {
}
CSS
div.example {
filter: blur(2px);
}
Syntax blur(length);
See also: