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: grayscale(100%);
} Syntax grayscale(number | percent);
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: grayscale(100%);
} Syntax grayscale(number | percent);
See also: