码迷,mamicode.com
首页 > Web开发 > 详细

CSS邻接选择器

时间:2015-07-20 16:49:59      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:+ 相邻选择器

div + p{

  ...

}

选中与div‘相邻‘的p


这个相邻为什么打引号?

<!DOCTYPE html>
<html>
<head>
<style>
div + p {
    background-color: yellow;
}
</style>
</head>
<body>
<p>Paragraph 0. Not in a div.</p>
<div>
<p>Paragraph 1 in the div.</p>
<p>Paragraph 2 in the div.</p>
</div>
<p>Paragraph 3. Not in a div.</p>
<p>Paragraph 4. Not in a div.</p>
</body>
</html>

哪些p会是补选中的呢?


只有 3 是被选中的,如果出乎意料,说明你这个‘相邻‘没有搞清楚


那么0 为什么没有呢?它也是div的相邻元素


原来 ‘+‘ 这个所谓的相邻只是‘紧随其后的相邻‘


相邻2

div ~ p{

 ...

}

<!DOCTYPE html>
<html>
<head>
<style>
div ~ p {
    background-color: yellow;
}
</style>
</head>
<body>
<p>Paragraph 0. Not in a div.</p>
<div>
<p>Paragraph 1 in the div.</p>
<p>Paragraph 2 in the div.</p>
</div>
<p>Paragraph 3. Not in a div.</p>
<p>Paragraph 4. Not in a div.</p>
</body>
</html>

3 ,4 会被选中..此处‘相邻‘为:‘其后的相邻‘



本文出自 “web之路” 博客,请务必保留此出处http://liuzhongcool.blog.51cto.com/10509488/1676353

CSS邻接选择器

标签:+ 相邻选择器

原文地址:http://liuzhongcool.blog.51cto.com/10509488/1676353

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!