I have this simple fatalist:
<input list="myList" />
<datalist id="myList">
<option>Option 1</option>
<option>Option 2</option>
</datalist>
and I would like to change the style with css: For example: set the cursor as pointer on option:hover
I tried this:
#myList > option:hover {
cursor: pointer;
}
But this has no effect. Any idea? :)