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 {
        padding: 10px;
        margin: 0;
        -webkit-appearance:none; /* remove the strong OSX influence from Webkit */
}