I want to change the text cursor to a custom image.
I have searched on all search engines. I can't find anything about the solution --> (Global)
I found a solution on W3Schools, but this is not global.
.text {
cursor: text;
}
When we change hover link cursor,
a:hover {
cursor: url(https://example.com/image/cursor.cur),auto!important;
}
Or default
* {
cursor: url(https://example.com/image/cursor_default.cur),auto!important;
}
But how to change cursor when user hover the text.
, ,
– Programmer Feb 09 '21 at 00:26` .
– tszhong0411 Feb 09 '21 at 01:40