I have a weird problem with firefox with the following css :
* {
margin: 0;
padding: 0;
border: 0;
}
select {
border: 1px solid #A3A3A3;
}
In chrome this behaves correctly :

But in Firefox I get this :

When I remove the "border: 0" and "border: 1px solid #A3A3A3;" properties, it works fine :

Any suggestion on how to get the same display on chrome and firefox ? Thanks