I have a select
which has some established styles. The problem is that I visualize it differently in Chrome and in Firefox and I would like to have a style at least similar or similar.
The code I use is:
#seleccionar{
background-color:transparent;
color:#259af0;
text-transform: none;
border:none;
}
#seleccionar:focus{
outline:none;
}
<select id="seleccionar">
<option>Prueba 1</option>
<option>Prueba 2</option>
</select>
In Chrome, it looks like this:
While in Firefox there is another:
With what styles can I assimilate them in different browsers?