gpt4 book ai didi

CSS伪选择器和组合器

转载 作者:太空宇宙 更新时间:2023-11-04 08:32:42 24 4
gpt4 key购买 nike

label:before > input:not(:checked) {
content: '';
position: absolute;
left: 0;
top: 3px;
width: 45px;
height: 22px;
border-radius: 23px;
border-color: #3089cb;
}

为什么那行不通?

最佳答案

您需要交换这些元素选择器才能使其工作,并删除直接子选择器 > 并使用即兄弟选择器 +

input:not(:checked) + label:before {
content: '';
position: absolute;
left: 0;
top: 3px;
width: 45px;
height: 22px;
border-radius: 23px;
border-color: #3089cb;
}

这里有一个标记示例

label {
position: relative;
}
input:not(:checked) + label:before {
content: '';
position: absolute;
left: 0;
top: 0;
width: 45px;
height: 22px;
border-radius: 23px;
background: #3089cb;
}
<input type="checkbox">
<label></label>

关于CSS伪选择器和组合器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44686868/

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