作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如果复选框是 required
, Firefox 将对其应用红色边框,即使表单尚未提交。我怎样才能删除或防止此边框?
<input type='checkbox' required />
我尝试应用以下样式,但均无效。
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;
}
input[type=checkbox]:invalid {
box-shadow: none;
}
<input type="checkbox" required>
关于css - 在 Firefox 中删除所需的复选框边框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55887097/
我是一名优秀的程序员,十分优秀!