gpt4 book ai didi

css - 在 Firefox 中删除所需的复选框边框

转载 作者:行者123 更新时间:2023-11-28 14:16:14 25 4
gpt4 key购买 nike

如果复选框是 required , Firefox 将对其应用红色边框,即使表单尚未提交。我怎样才能删除或防止此边框?

<input type='checkbox' required />

enter image description here

我尝试应用以下样式,但均无效。

input[type=checkbox]:invalid {
-moz-appearance: none;
appearance: none;
border: none;
outline: none;
}

input[type=checkbox]:required {
-moz-appearance: none;
appearance: none;
border: none;
outline: none;
}

现在我没主意了:/

最佳答案

您看到的红色边框是 box-shadow。您可以将其设置为 none

input[type=checkbox]:invalid {
box-shadow: none;
}

enter image description here

input[type=checkbox]:invalid {
box-shadow: none;
}
<input type="checkbox" required>

关于css - 在 Firefox 中删除所需的复选框边框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55887097/

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