在输入 [type=checkbox] 上更改父 div:用 css 检查
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/10846127/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-30 04:04:08 来源:igfitidea点击:
Change parent div on input[type=checkbox]:checked with css
提问by lajlev
I can figure out how to make the parent div change when checkbox is checked :( Changing the following paragraph works fine.
我可以弄清楚如何在选中复选框时更改父 div :( 更改以下段落可以正常工作。
Tried this approach without luck in Chrome:
在 Chrome 中尝试了这种方法而没有运气:
HTML
HTML
?<div>
<input type="checkbox??????????????????????????????" checked>
<p>Test</p>
</div>???????????????????????????????????????????????
CSS
CSS
div {
background: pink;
width: 50px;
height:50px;
}
div + input[type=checkbox]:checked {
background: green;
}
input[type=checkbox]:checked + p {
background: blue;
}