当我将鼠标悬停在div上时,我想使用Font Awesome图标之一作为光标/鼠标指针。这可能吗?像这样的东西:
.myClass:hover {
cursor: <--- here assign to the cursor the Font Awesome icon
}
答案 0 :(得分:6)
根据documentation,实现自定义光标的唯一方法,
是使用cursor: url();
e.g. dropbox
cursor: url()
将图标图像用作光标。