gpt4 book ai didi

html - 为什么我的样式不适用于我的标签和输入?

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

我想使用下面的代码自定义一个复选框,但是样式没有应用到我的复选框:

input[type=checkbox] {
display:none;
}
label + input[type=checkbox] {
background: green;
height: 16px;
width: 16px;
display:inline-block;
padding: 0 0 0 0px;
}
label + input[type=checkbox]:checked {
background: #0080FF;
height: 16px;
width: 16px;
display:inline-block;
padding: 0 0 0 0px;
}
<label for="thing">
<input type='checkbox' name='thing' value='valuable' id="thing"/>
</label>

JSFiddle Demo

最佳答案

已更新以反射(reflect)上面使用 appearance:none 标签的答案。也适用于辅助功能。

label > input[type='checkbox'] {
appearance: none;
-moz-appearance: none;
-webkit-appearance: none;
width: 20px;
height: 20px;
background: green;
}
label > input[type='checkbox']:checked {
background: blue;
}

https://jsfiddle.net/b8uedf9p/

关于html - 为什么我的样式不适用于我的标签和输入?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50241611/

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