Custom <select>s with CSS3
HTML
<select>
<option>Sushi</option>
<option>Blue cheese with crackers</option>
<option>Steak</option>
<option>Other</option>
</select>
CSS
select {
height:30px;
background:#ffffff;
}