I\'m trying to use custom png cursor using data uri but the cursor doesn\'t change. I\'ve tested on FF 17 which support png as custom cursor. The same data uri work as a bac
Add , auto after your data url like such:
, auto
cursor: url(data:image/png;base64,...), auto;
Not sure why this fixes the problem.