Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
鼠标选择文本时设置光标指针的最佳解决方案是什么?在 Firefox 上,当您选择文本时,光标仍然是一组,而不是在您选择文本时,光标将返回到标准的一组。
尝试在 CSS3 中使用它:
::-moz-selection { cursor: pointer; }
对于FF;对于其他浏览器,请使用:
::selection { cursor: pointer; }
添加
cursor:pointer;
到你的 CSS
.myClass { color: red; cursor: pointer; }