I want to set Select box of transparent background
I used CSS of select {background: transparent}
But it not working. how do I do?
I want to set Select box of transparent background
I used CSS of select {background: transparent}
But it not working. how do I do?
try this:
select {
opacity: 0.7;
filter: alpha(opacity=70);
}
That is if you want to create a transparent select tag