After reading this question: Inline SVG in CSS (works perfectly on Firefox and Chrome)
body { background-image:
url("data:image/svg+xml;utf8,<svg>........</svg>");
}
I tried to apply some filter effects with
filter: url("data:image/svg+xml;utf8,<svg>........</svg>#filter01")
It worked on FF, but didn't work on Chrome.
What's the reason and how can I fix it?