I've designed a simple form with CSS, and one of the elements is a select with the following style applied:
.mysub_item select {
height: 29px;
width: 142px;
background: url("/images/input-background.png") no-repeat scroll 0 4px transparent;
border: 0;
font-size: 12px;
font-weight: bold;
color: #4B4B4D;
}
The text inside this select box always aligns to the top and left. Is there a way to move the text within the select box?
It's worth noting that surprisingly, IE7, IE8, and IE9 center the text vertically by default.