CSS3 appearance property doesn't work fine in webkit browsers

The developers of the project I'm working on have -webkit-appearance: none;checked ALL selections around the world.

How would I decide to override this and reset it to its original state? I know that I can simply remove the code from the global parameter, but I would like to redefine it, because I do not want it to execute other code.

I tried:

-webkit-appearance:normal;

but it is not valid

+4
source share
1 answer

For web browsers, the only valid values ​​for -webkit-appearanceare on this list.

So, to return to its original state, select the item you should use:

-webkit-appearance:menulist;

CSS CSS, .

, , CSS

select{
   -webkit-appearance:menulist;
}

DEMO

+5

Source: https://habr.com/ru/post/1534845/


All Articles