gpt4 book ai didi

HTML, CSS |选择先前删除的箭头显示

转载 作者:太空宇宙 更新时间:2023-11-04 10:30:10 25 4
gpt4 key购买 nike

我的问题是我必须使用以下代码将我网站上所有选定的箭头设置为默认隐藏。

   select::-ms-expand {
//remove default down arrow in IE
display: none;
}

select.form-control {
-moz-appearance: none;
-webkit-appearance: none;
appearance: none;
}

然后我创建了一个新的选择,我不想携带这种效果。我希望它显示为默认值。我的问题是我需要输入什么才能覆盖它。

  select.select-p-text::-ms-expand {
//remove default down arrow in IE
display: ?;
}

select.select-p-text.form-control {
-moz-appearance: ?;
-webkit-appearance: ?;
appearance: ?;
}

谢谢,

基兰

最佳答案

尝试使用此代码先生

   select:not(.selectClass)::-ms-expand {
//remove default down arrow in IE
display: none; }

select:not(.selectClass).form-control {
-moz-appearance: none;
-webkit-appearance: none;
appearance: none; }

这将使在 :not() 中调用的类不继承任何 css 设计

关于HTML, CSS |选择先前删除的箭头显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36544090/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com