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.
我在删除主题上的自定义光标时遇到问题。我正在使用guroshoujo 的 Sucy主题。
我已经删除了光标代码并删除了我的缓存,但它仍然显示出来。
只需添加此 CSS 规则:
body { cursor: default !important; }
问题是您已将该cursor属性放在不同的元素中(例如, in div.media > a)。如果添加,则!important确保“覆盖”cursor其他元素的属性。
cursor
div.media > a
!important