这个例子中的“~”是什么意思?我从本教程中看到了这个例子。http://css-tricks.com/the-checkbox-hack/
我知道它可以用来根据复选框的状态完全不同地设置元素的样式。但是,我找不到任何解释“~”的 CSS 文档?
input[type=checkbox] {
position: absolute;
top: -9999px;
left: -9999px;
/* For mobile, it's typically better to position checkbox on top of clickable
area and turn opacity to 0 instead. */
}
/* Default State */
div {
background: green;
width: 400px;
height: 100px;
line-height: 100px;
color: white;
text-align: center;
}
/* Toggled State */
input[type=checkbox]:checked ~ div {
background: red;
}