开发者

How to set Select box background in WebKit?

开发者 https://www.devze.com 2023-03-11 17:35 出处:网络
I want to set Select box of transparent background I used 开发者_运维问答CSS of select {background: transparent}

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 adding

-webkit-appearance: none;


try this:

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

That is if you want to create a transparent select tag

0

精彩评论

暂无评论...
验证码 换一张
取 消