CSS - Select height

Select height is different in different browsers;

by NickU

HTML

<select>
    <option>Here's one option</option>
    <option>here's another option</option>
</select>

CSS

select {
        height:130px;
        line-height:130px;
        background:#f4f4f4;
    }