I'm trying to align the text inside a <select>
but it's only aligned (by default) using Chrome and IE11 browsers (as it may seem), only in FF (v27.0.1) that the text stays in top.
I have tried to use vertial-align:middle
but it has not changed at all.
I would like it to be vertically aligned without using a padding-top
for the element because it would be out of line in other browsers.
HTML
<select name="disciplina" id="disciplina">
<option value="00">Disciplina</option>
</select>
CSS
select {
width: 200px;
height: 38px;
}
JSFiddle .