Reputation: 1081
I want to use one of Font Awesome icons as the cursor/mouse pointer when I hover over a div. Is this possible? something like this:
.myClass:hover {
cursor: <--- here assign to the cursor the Font Awesome icon
}
Upvotes: 4
Views: 6505
Reputation: 979
according to the documentation, the only way to achieve a custom cursor,
is by using cursor: url();
e.g. dropbox
cursor: url()
to use the icon image as a cursor.Upvotes: 7