I want to have Firefox selectbox by default, but unfortunately I have a CSS instruction (which I cannot change or delete) that gives all the elements a selectbackground and border. This makes Firefox turn a good default control into an ugly square. Is there any way to remove / cancel these instructions?
select {
background-color: white;
border: 1px solid black;
}
I tried to overwrite these definitions with none, autoand inherit, but they did not have a fixed effect.
source
share