通用兄弟选择器
2018-04-12 本文已影响0人
直到世界尽头_Leo
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>兄弟选择器</title>
<style>
/*h1+p{
color: red;
}*/
h1~p{
color: red;
}
</style>
</head>
<body>
<h1>标题</h1>
<a href=""></a>
<p>我是段落</p>
<p>我是段落</p>
<p>我是段落</p>
<h1>标题</h1>
<p>我是段落</p>
<p>我是段落</p>
<p>我是段落</p>
</body>
</html>