How to check "Select Field" checkbox in WebKit?

I want to set a transparent background selection box

I used CSS select {background: transparent}

But it does not work. How should I do it?

+3
source share
2 answers

Try to add

-webkit-appearance: none;
+4
source

try the following:

select {
  opacity: 0.7;
  filter: alpha(opacity=70);
}

That is, if you want to create a transparent select tag

0
source

All Articles