不知道应该用什么
.myclass {
cursor: pointer;
}
或者
.myclass:hover {
cursor: pointer;
}
还是没有区别?
不知道应该用什么
.myclass {
cursor: pointer;
}
或者
.myclass:hover {
cursor: pointer;
}
还是没有区别?
使用任何你想要的。
我会使用第一个,因为它会为我节省几行 CSS
否则,您可以为所有其他伪类指定不同的指针。
像:
a:link{cursor:pointer;} /* you still dont need it ... as it's default*/
a:hover{cursor:crosshair;}
a:active:{cursor:wait;}
a:visited{cursor:wait;}
没有区别——光标在任何一种情况下都会改变。
我发现如果你需要支持 IE7,如果带有样式光标的元素靠近页面底部,使用 :hover 伪类会导致页面不规则地跳转。我建议不要使用 :hover ,因为没有它 CSS 也能正常工作。