I have an SVG sprite:
<svg xmlns="http://www.w3.org/2000/svg" style="display:none;">
<symbol id="ailMouseIco" viewBox="0 0 51.2 76.5">
<path fill="#FFF" stroke="#000" stroke-width="3" d="M47.5 48.6l-46-45v62l14-13 10 22 10-4-10-22h22z"/>
</symbol>
</svg>
Elsewhere, I use that sprite as follows:
<svg width="30" height="30">
<use xlink:href="#ailMouseIco"></use>
</svg>
I need to use this sprite as a mouse cursor (CSS).
I've tried:
html *, html:hover {
cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Cuse xlink:href='%23ailMouseIco'%3E%3C/use%3E%3C/svg%3E"),default !important;
}
and
html *, html:hover {
cursor: url("#ailMouseIco"),default !important;
}
and several other, similar options, but no joy.
Any ideas?