Convert SVG to CSS background-image data URI
Input SVG
Encoding Options
Usage Examples
CSS Background:
.element {
background-image: url("data:image/svg+xml,...");
background-repeat: no-repeat;
}CSS List Marker:
li::marker {
content: url("data:image/svg+xml,...");
}CSS Cursor:
.custom-cursor {
cursor: url("data:image/svg+xml,..."), auto;
}