首页 > 代码库 > 关于区分对比CSS 组合选择符

关于区分对比CSS 组合选择符

 

组合方式

区分

源代码

效果

后代选取器

 

以空格分隔

后代选取器匹配所有值得元素的后代元素。

 

 

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"> 
<title>后代选取器</title> 
<style>
div p
{
	background-color:yellow;
}
</style>
</head>
<body>

<div>
<p>段落 1。 在 div 中。</p>
<p>段落 2。 在 div 中。</p>
</div>

<p>段落 3。不在 div 中。</p>
<p>段落 4。不在 div 中。</p>

</body>
</html>

  

 

 技术分享

 

子元素选择器

 

以大于号分隔

与后代选择器相比,子元素选择器(Child selectors)只能选择作为某元素子元素的元素。

 

 

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"> 
<title>子元素选择器</title> 
<style>
div>p
{
	background-color:yellow;
}
</style>
</head>

<body>
<h1>Welcome to My Homepage</h1>
<div>
<h2>My name is Donald</h2>
<p>I live in Duckburg.</p>
</div>

<div>
<span><p>I will not be styled.</p></span>
</div>

<p>My best friend is Mickey.</p>
</body>
</html>

  

 技术分享

 

相邻兄弟选择器

 

以加号分隔

 

相邻兄弟选择器(Adjacent sibling selector)可选择紧接在另一元素后的元素,且二者有相同父元素。

如果需要选择紧接在另一个元素后的元素,而且二者有相同的父元素,可以使用相邻兄弟选择器(Adjacent sibling selector)。

 

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"> 
<title>相邻兄弟选择器</title> 
<style>
div+p
{
	background-color:yellow;
}
</style>
</head>
<body>

<h1>Welcome to My Homepage</h1>

<div>
<h2>My name is Donald</h2>
<p>I live in Duckburg.</p>
</div>

<p>My best friend is Mickey.</p>

<p>I will not be styled.</p>

</body>
</html>

  

 

 技术分享

 

普通相邻兄弟选择器

 

以破折号分隔

普通兄弟选择器选取所有指定元素的相邻兄弟元素。

 

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"> 
<title>普通相邻兄弟选择器</title> 
<style>
div~p
{
	background-color:yellow;
}
</style>
</head>
<body>

<div>
<p>段落 1。 在 div 中。</p>
<p>段落 2。 在 div 中。</p>
</div>

<p>段落 3。不在 div 中。</p>
<p>段落 4。不在 div 中。</p>

</body>
</html>

  

 

 技术分享

 

 

关于区分对比CSS 组合选择符