I'm encountering an issue with the vertical alignment of a select box caption in Firefox.
The CSS for the select element is as follows:
select#cities_list {
width: 95px;
height: 45px;
line-height: 45px;
background: url('./img/select-arrow.png') no-repeat right transparent;
-webkit-appearance: none;
border: 1px solid #dcdcdc;
border-left: none;
border-right: none;
padding: 0 10px;
margin: 0;
float: left;
}
In Chrome, everything displays correctly:
Please assist!