I want to set a transparent background selection box
I used CSS select {background: transparent}
select {background: transparent}
But it does not work. How should I do it?
Try to add
-webkit-appearance: none;
try the following:
select { opacity: 0.7; filter: alpha(opacity=70); }
That is, if you want to create a transparent select tag