Question

Having html below:

1
2
3
4
<ul>
<li>foo</li>
<li>goo</li>
</ul>

How to make the cursor a hand when hovering the table?

Answer

Solution is below:

1
2
3
li {
cursor: pointer;
}

Reference


This is the end of post