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.
我有一些列表项,当用户将鼠标悬停在它们上方时,我希望光标从箭头变为手。从某种意义上说,我希望它看起来像一个链接。我怎样才能做到这一点?
将光标设置为指针。
<style type="text/css"> .fakeLink{cursor:pointer} </style> <ul> <li class='fakeLink'>This is not really a link</li> </ul>