I want to have a default Firefox selectbox, but unfortunately I have a css instruction (which i can not alter or remove) that gives all select
elements a background and border. Which makes Firefox transform the nice default control to an ugly squared one. Is there a way to remove/revert those instructions?
select {
background-color: white;
border: 1px solid black;
}
I've tried to overwrite this definitions with none
, auto
and inherit
, but they didn't have the indended effect.