List Items To Behave Like Links When Cursor Hovers
I have some list items where I want the cursor to change from an arrow to a hand when a user hovers over them. In a sense I want it to look like a link. How can I do this?
Solution 1:
Set the cursor to a pointer.
<style type="text/css">
.fakeLink{cursor:pointer}
</style>
<ul>
<li class='fakeLink'>This is not really a link</li>
</ul>
Post a Comment for "List Items To Behave Like Links When Cursor Hovers"