我正在读一篇文章 https://code.tutsplus.com/tutorials/the-30-css-selectors-you-must-memorize--net-16048
当您在第17节中查看演示时,您将获得此选择器:
input[type=radio]:checked + label {
color: blue;
}
第17节介绍了伪类选择器,但是这个选择器对我来说似乎是一个相邻的选择器。你会怎么称呼它?
答案 0 :(得分:2)
我不认为它被称为任何东西,它只是伪类(:checked
)和相邻兄弟选择器(+ label
)的组合。
如果我错了,请纠正我。
答案 1 :(得分:1)
:checked位是伪类选择器,+位是相邻选择器