Issuing border problem in firefox

enter image description here

Firefox disables the border of the drop-down menu or makes them look disgusting in some cases (making the left border gray and the right border black).

Is there a fix for this in CSS?

I am using Bootstrap, UniformJS (removing this did not change anything).

+4
source share
3 answers

Its a bug in firefox. You can check it out here .

The best way is to provide a width of 99.99% instead of 100% in your CSS.

+5
source

To execute a response from Rhythm Patel, add the following to your CSS or element.

select {
    width: 99% !important;
}
0
source

.. - Firefox.

CSS

select {
 width: 99% !important;
}

0

All Articles