SELECT BOX STYLES - WTF

Whats your deal man?!

by Chris Buttery

HTML

<select name="orsum-selector">
    <option value="1">one</option>
    <option value="2">two</option>
    <option value="3">three</option>
</select>

CSS

/* 
    Replace the background color with #fff, white = broken styles
    Remove background  altogether = broken styles
    Replace the background color value with an offwhite example #fffffa, transparent or none = works.
    WTF?!

    EDIT:
    Seems its a bug with webkit.
    FF, IE seem to work as expected fine.
*/

select{
    /* background: #fff; */
    background: #fffffa;
    color:#333;
    font-size:20px
}