Source code
Revision control
Copy as Markdown
Other Tools
<!--
Any copyright is dedicated to the Public Domain.
-->
<!-- Test multiple SVG filters chained together against a single SVG filter. -->
<filter id="blur-and-hue-rotate">
<!-- Blur the red rect. -->
<feGaussianBlur stdDeviation="3"/>
<!-- Turn the red rect into a green rect. -->
<feColorMatrix type="hueRotate" values="90"/>
</filter>
<rect x="20" y="20" width="100" height="100" fill="#ff0000" filter="url(#blur-and-hue-rotate)"/>
</svg>