CSS中常见选择器的介绍与使用

时间:2024-01-22 18:28:39

CSS选择器是CSS的基石,赋予开发者精确控制HTML文档中元素样式的能力,这篇文章主要为大家详细介绍了常见的一些CSS选择器并提供示例代码,感兴趣的小伙伴可以跟随小编一起学习一下

CSS选择器是CSS的基石,赋予开发者精确控制HTML文档中元素样式的能力。选择器定义了CSS规则集将应用到HTML文档的哪一部分,通过不同类型的选择器,可以根据元素的tag、ID、class、属性、状态等各种条件来应用样式。本文将详细介绍各种CSS选择器并提供示例代码。

类型选择器(标签选择器)

类型选择器,也称为标签选择器,根据HTML元素的名称来选取元素。

1

2

3

4


/* 所有的段落都会被应用样式 */

p {

color: blue;

}


登录后复制


id选择器

通过元素的ID属性选择特定的HTML元素。ID在HTML文档中是唯一的。

1

2

3

4


/* 应用于ID为"header"的元素 */

#header {

background-color: navy;

}


类选择器

类选择器通过HTML元素的class属性选取元素,一个class可以被多个元素共享。

1

2

3

4


/* 所有带有"class-name"类的元素 */

.class-name {

font-weight: bold;

}


后代选择器

后代选择器(也称为上下文选择器)用于选取某个元素的后代元素。

1

2

3

4


/* 选择<div>内的所有<span> */

div span {

color: red;

}


子选择器

子选择器仅选择直接子元素。

1

2

3

4


/* 只选择<div>元素的直接子元素<ul> */

div > ul {

list-style-type: none;

}


相邻同辈选择器

相邻同辈选择器选取紧随其后的相邻同辈元素。

1

2

3

4


/* 选择<p>元素之后的第一个<h2>元素 */

p + h2 {

margin-top: 0;

}


一般同辈选择器

一般同辈选择器用于选取某元素之后的所有具有相同父元素的同辈元素。

1

2

3

4


/* 选择<h2>元素之后所有兄弟元素<h2> */

h2 ~ h2 {

border-top: 1px solid gray;

}


通用选择器

通用选择器是一个通配符,匹配文档中的所有元素。

1

2

3

4


/* 页面中所有元素都将有黄色背景 */

* {

background: yellow;

}


属性选择器

属性选择器根据元素的属性及其值来选择元素。

1

2

3

4

5

6

7

8


/* 选择含有"target"属性的HTML元素 */

[target] {

border: 1px solid black;

}

/* 选择"target"属性等于"_blank"的HTML元素 */

[target="_blank"] {

background-color: silver;

}


属性选择器与特殊字符

CSS还提供了特定的字符,供属性选择器使用,用于更加细致的条件匹配。

1

2

3

4

5

6

7

8

9

10

11

12


/* 选择具有以"btn-"开头的class属性值的元素 */

[class^="btn-"] {

padding: 5px 10px;

}

/* 选择具有以"-btn"结尾的class属性值的元素 */

[class$="-btn"] {

font-weight: bold;

}

/* 选择class属性值含有"btn-"的任何地方的元素 */

[class*="btn-"] {

font-size: 1.2em;

}


伪元素选择器

伪元素选择器用于样式化元素的特定部分或生成的内容。

::first-letter 和 ::first-line

1

2

3

4

5

6

7


p::first-letter {

font-size: 200%;

color: #8A2BE2;

}

p::first-line {

font-variant: small-caps;

}


::before 和 ::after

1

2

3

4

5

6

7

8


h1::before {

content: "Welcome ";

color: green;

}

h1::after {

content: "!";

color: red;

}


伪类选择器

伪类选择器用于定义元素的特殊状态。

:link:visited:hover:focus:active

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15


a:link {

color: #FF0000;

}

a:visited {

color: #00FF00;

}

a:hover {

color: #FF00FF;

}

a:focus {

border: 1px dashed #0000FF;

}

a:active {

color: #0000FF;

}


:target 和 :not()

1

2

3

4

5

6


:target {

background-color: #f9f9f9;

}

:not(.highlighted) {

background-color: #ffff00;

}


结构化伪类选择器

结构化伪类选择器允许基于文档结构选择元素。

:nth-child 和 :nth-last-child

1

2

3

4

5

6

7

8

9

10


li:nth-child(odd) {

color: red;

}

li:nth-child(even) {

color: blue;

}

/* 从末尾开始的第二个子元素 */

li:nth-last-child(2) {

font-size: 1.5em;

}


:nth-of-type 和 :nth-last-of-type

1

2

3

4

5

6

7

8


/* 选择第一个<p>类型的元素 */

p:nth-of-type(1) {

font-weight: bold;

}

/* 选择倒数第二个<p>类型的元素 */

p:nth-last-of-type(2) {

background-color: lightgray;

}


伪类表单选择器

CSS为表单提供了一组伪类选择器,用于根据不同的状态来设置样式。

:required:valid:invalid:optional:in-range 和 :out-of-range

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15