When applying a custom height on a select
element, the text in IE8 is being vertically aligned to the bottom:
http://jsfiddle.net/4DYPf/8/
<select>
<option value="1">123</option>
<option value="1">456</option>
</select>
select
{
border: 2px solid #CDCDCD;
height: 50px;
}
Is there a way to align in to the middle?