Cursor does not work: pointer in Google Chrome browser for parameter tag?

how to indicate the cursor as a pointer in the parameter tag? Currently it works well in Firefox and Safari, but it doesn’t work in Chrome. can anyone give any suggestion on this.

<style>
select option{
cursor:hand;
cursor:pointer;
}
</style>

<select>
<option>On mouse over need Hand symbol</option>
<option>11111111111111</option>
<option>22222222222222</option>
<option>33333333333333</option>
</select>
+5
source share
1 answer

If Chrome doesn’t support it, you won’t be able to do it.

The only way is to use separate Javascript (or CSS) drop-down menus, which should not be changed only to the cursor.

+2
source

All Articles