CSS系列之后代选择器子选择器和相邻兄弟选择器

Posted china-fanny

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CSS系列之后代选择器子选择器和相邻兄弟选择器相关的知识,希望对你有一定的参考价值。

 

  • 后代选择器比子选择器的范围大,包含子选择器,且包含子选择器的“子孙”选择器,后代选择器使用"空格"符号间隔选择器
  • 子选择器:子选择器只是父选择器的一级子元素,使用">"符号链接选择器
  • 相邻兄弟选择器,是拥有相同父元素,且两个元素相邻,使用"+"符号链接

1. 后代选择器

  • 比如如下html代码,em是h1的后代元素,如下css样式这样写,只会影响h1中的em标签的内容变为红色,不会影响p中em的内容

css:

h1 em color:red;

 HTML:

<html>
<head>
<style type="text/css">
h1 em color:red;
</style>
</head>
<body>
<h1>This is a <em>important</em> heading</h1>
<p>This is a <em>important</em> paragraph.</p>
</body>
</html>

运行结果: 

技术图片

  • h1 em的写法适用于h1中的的所有em,且不管em嵌套多少层都会适用
<h1>This is a <span><p><em>important</em></p></span> heading</h1>

 运行结果:

技术图片

2. 子选择器

下面设置h1的子元素strong标签的内容为红色

第二个h1中,因为strong的父元素不是h1,而是em,所以css中的设置不会对它起作用

css:

h1 > strong color:red;

HTML:

<!DOCTYPE HTML>
<html>
<head>
<style type="text/css">
h1 > strong color:red;
</style>
</head>

<body>
<h1>This is <strong>very</strong> <strong>very</strong> important.</h1>
<h1>This is <em>really <strong>very</strong></em> important.</h1>
</body>
</html>

 

运行结果: 

技术图片

3. 相邻兄弟选择器

h1和p拥有相同的父元素body,相邻兄弟选择器需要紧挨着,只会适用于与h1相邻的p标签的内容

css:

h1 + p margin-top:50px;

HTML:

<!DOCTYPE HTML>
<html>
<head>
<style type="text/css">
h1 + p margin-top:50px;
</style>
</head>

<body>
<h1>This is a heading.</h1>
<p>This is paragraph.</p>
<p>This is paragraph.</p>
<p>This is paragraph.</p>
<p>This is paragraph.</p>
<p>This is paragraph.</p>
</body>
</html>

 

运行结果:

技术图片

请记住,用一个结合符只能选择两个相邻兄弟中的第二个元素

所以h1+p只会对第一个p作用,再如下面的例子:

只会对两个列表的第二个及后面的li起作用,对第一个li不会起作用

css:

li + li font-weight:bold;

HTML:

<!DOCTYPE HTML>
<html>
<head>
<style type="text/css">
li + li font-weight:bold;
</style>
</head>

<body>
<div>
  <ul>
    <li>List item 1</li>
    <li>List item 2</li>
    <li>List item 3</li>
  </ul>
  <ol>
    <li>List item 1</li>
    <li>List item 2</li>
    <li>List item 3</li>
  </ol>
</div>
</body>
</html>

 

运行结果: 

技术图片

 

 例程来源:

以上是关于CSS系列之后代选择器子选择器和相邻兄弟选择器的主要内容,如果未能解决你的问题,请参考以下文章

在css中 比较 后代选择器和相邻选择器有啥区别 设计一个示例

CSS选择器详解通用选择器和高级选择器

包含类、子选择器和相邻兄弟选择器的 CSS 选择器的等效 XPath 是啥?

HTML篇第十八讲:css选择器后代选择器子元素选择器分组选择器

CSS3 相邻兄弟选择器和通用选择器只能通过类来实现的么?

css基础 CSS 组合选择符CSS 伪类CSS 伪元素