标签: css cursor
我可以使用 cursor:none 禁用光标,但拖动时光标仍然可见(在mouseDown时移动光标)。有禁用它的选项吗?
答案 0 :(得分:2)
使用:active伪类:
:active
a:active { cursor:none /* or some other value */; }
文档:https://developer.mozilla.org/en-US/docs/CSS/:active