Web速查-索引

Alt text

定义

相邻兄弟选择器,选择具有相同父元素且同级的element1相邻的element2

语法

element1 + element2
{
CSS 样式;
}

实例

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>鱼C-零基础入门学习Web(Html5+Css3)</title>
<style>
div+p{
color: green;
}
</style>
</head>
<body>
<div>
<h1 class="important">Welcome to FishC.com</h1>
</div>
<div>
<p>Welcome to FishC.com</p>
</div>
<div>
<p >Welcome to FishC.com</p>
</div>
<!--选择 <div> 元素之后紧跟的第一个个 <p> 元素,并设置其背景色。-->
<p>Welcome to FishC.com</p>
<p>Welcome to FishC.com</p>
</body>
</html>

Welcome to FishC.com

Welcome to FishC.com

Welcome to FishC.com

Welcome to FishC.com

Welcome to FishC.com

浏览器支持

表格中的数字表示支持该属性的第一个浏览器版本号

Safari Chrome FireFox IE
1.0 1.0 1.0 5.0