css普通兄弟选择器如何理解

1、CSS普通兄弟选择器是指所有连接到另一个元素的元素,两者都有相同的父元素。

2、普通兄弟选择器使用波浪号(~)作为普通兄弟的结合符。

实例

<!DOCTYPEhtml>
<html>
<head>
<metacharset="UTF-8">
<metaname="viewport"content="width=device-width,initial-scale=1.0">
<title>普通兄弟选择器</title>
<style>
.ancestor{
width:500px;
height:300px;
}
.parent{
width:300px;
height:200px;
}
.child{
width:200px;
height:100px;
}
/*定位的是.child1的后面兄弟为div的元素*/
.child1~div{
background-color:lightcoral;
}
</style>
</head>
<body>
<div>
thisisancestor.
<div>
thisisparent.
<div>thisischild0.</div>
<div>thisischild1.</div>
<div>thisischild2.</div>
<div>thisischild3.</div>
</div>
</div>
</body>
</html>
原文来自:https://www.py.cn
© 版权声明
THE END
喜欢就支持一下吧
点赞6 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容