Clicking on a <select>
element with border:none;
and cursor:pointer
in Opera Mini reloads the page. Minimal example:
select {
cursor: pointer;
border: none;
}
<select>
<option value="1">English</option>
<option value="2">Mathematics</option>
<option value="3">Social Studies</option>
<option value="4">Business</option>
</select>
Anyone knows a better way of fixing that other than removing one of these CSS properties or changing the border to solid transparent 1px
?