Convert SVG to CSS background-image: url("data:image/svg+xml,..."). Perfect for CSS patterns, icons, and decorations without extra image files.
Data URI embeds file content directly into a URL. Using data:image/svg+xml lets you inline SVG in CSS without external files, reducing HTTP requests. Great for small icons and patterns.
Color replacement works when the SVG uses currentColor or specific fill/stroke attributes. If colors are hardcoded, edit the SVG directly.
All modern browsers support data:image/svg+xml as CSS background-image. IE11 also supports it, but special characters in SVG need proper encoding.