1.CSS普通兄弟選擇器是指所有連接到另一個元素的元素,兩者都有相同的父元素。
2.普通兄弟選擇器使用波浪號(~)作為普通兄弟的結合符。
實例
.ancestor {
width: 500px;
height: 300px;
}
.parent {
width: 300px;
height: 200px;
}
.child {
width: 200px;
height: 100px;
}
/* 定位的是.child1 的後面兄弟為div 的元素*/
.child1~div {
background-color: lightcoral;
}
this is ancestor.
this is parent.
以上就是css普通兄弟選擇器的理解,希望對大家有幫助。
更多css學習指路:css教程