css选择器四⼤类:基本、组合、属性、伪类
什么是选择器?选择器的作⽤是通过它可以到元素,把css样式传递给元素!css选择器主要分为:基本选择器、属性选择器、组合选择器与伪类选择器四个⼤类!
css基本选择器
基本选择器⼜分为:*通配符、标签选择器、class选择器、id选择器,在这⾥需要注意的编程思想在css层叠样式表中元素有且仅有⼀个id。注意以下⼏点1.id唯⼀性2.元素id不相
同,就像每⼀个⼈只有⼀个⾝份证⼀样,ID就代表⾝份证3.class选择器不具有唯⼀性,它可以重复使⽤!此外这个*通配符代表的是全局
1<!DOCTYPE html>
2<html lang="en">
3<head>
4<meta charset="UTF-8">
5<meta name="viewport" content="width=device-width, initial-scale=1.0">
6<title>css基本选择器</title>
7<style type="text/css">
8 *{
9 color: skyblue;
10 }/**通配符*/
11 div{
12 color: red;
13 }/*标签选择器*/
14 .box{
15 color: steelblue;
16 }/*class选择器*/.box{color: steelblue;}也可以写成*.box{color: steelblue;}代表的所有的box字体颜⾊为 steelblue
17 #content{
18 color: tomato;
19 }/*id选择器*/
20</style>
21</head>
22<body>
css选择器分为哪几类23<div class="box" id="content">
24⼤灰⽜博客专注web前端技术学习
25</div>
26</body>
27</html>
css组合选择器
把基本选择器通过特殊符号串在⼀起有意见称之为css组合选择器,常见的css组合选择器有:分组选择器、嵌套选择器、⼦选择器、相邻同级别选择器
1<!DOCTYPE html>
2<html lang="en">
3<head>
4<meta charset="UTF-8">
5<meta name="viewport" content="width=device-width, initial-scale=1.0">
6<title>css组合选择器</title>
7<style type="text/css">
8/* div{
9 color: teal;
10 font-size: 24px;
11 }
12 p{
13 color: teal;
14 } */
15 div{
16 font-size: 24px;
17 }
18 div,p{
19 color: teal;
20 }/*分组选择器*/
21 div p{
22 color: red;
23 }/*嵌套选择器*/
24 ul>li{
25 font-size: 24px;
26 list-style: square;
27 }/*⼦选择器*/
28 div+p{
29 color: blue;
30 }/*相邻同级别选择器*/
31</style>
32</head>
33<body>
34<div>
35成功的花,⼈们只惊羡她现时的明艳!然⽽当初她的芽⼉,浸透了奋⽃的泪泉,洒遍了牺牲的⾎⾬
36<p>⾃以为懂得很多了经历很多了最后才知道都是那么的可笑</p>
37</div>
38<p>我们不要只看成功者荣誉的瞬间,更要看到成功者为之努⼒、为之奋⽃的过程,从⽽激励⾃⼰也不断付出,奔着那个成功的⽬标前进.</p>
39<p>成功的花,⼈们只惊羡她现时的明艳!然⽽当初她的芽⼉,浸透了奋⽃的泪泉,洒遍了牺牲的⾎⾬<span>我们不要只看成功者荣誉的瞬间,更要看到成功者为之努⼒、为之奋⽃的过程,从⽽激励⾃⼰也不断付出,奔着那个成功的⽬标前进. 40<ul>
41<li>1</li>
42<li>2</li>
43<li>3</li>
44</ul>
45</body>
46</html>
css属性选择器
基本选择器[属性]、基本选择器[属性=值]、基本选择器[属性~=值]空格符隔开多个、基本选择器[属性^=值]以什么开始、基本选择器[属性$=值]以什么结束
1<!DOCTYPE html>
2<html lang="en">
3<head>
4<meta charset="UTF-8">
5<meta name="viewport" content="width=device-width, initial-scale=1.0">
6<title>css属性选择器</title>
7<style type="text/css">
8 div[title]/*基本选择器[属性]*/
9 div[title=english]{
10 color: blue;
11 }/*基本选择器[属性=值]*/
12 div[title~=en]{
13 color:#f90;
14 font-weight: bold;
15 }/*基本选择器[属性~=值] 任意包含有属性中的⼀个*/
16 p,div[title^=zh]{
17 font-size:24px;
18 color: brown;
19 }/*基本选择器[属性^=值]以什么开始*/
20 div[title$=china]{
21 letter-spacing: 10px;
22 text-decoration: line-through;
23 font-style: italic;
24 }/*基本选择器[属性$=值]以什么结束*/
25</style>
26</head>
27<body>
28<div title="english">
29 If you can NOT explain it simply, you do NOT understand it well enough
30</div>
31<div title="english en yingyu">
32你们没发现嘛?2013爱你⼀⽣,2014爱你⼀世,2015爱你⼀屋,2016爱你⼀路,2017爱你⼀切,2018爱你⼀半,2019爱你依旧,2020爱你爱你,2021爱你⽽已
33</div>
34<p title="zh en">
35 css选择器四⼤类:基本、组合、属性、伪类
36</p>
37<div title="zh en china">
38 wwwblogs/dhnblog/p/12293463.html
39</div>
40</body>
41</html>
css伪类选择器
从字⾯意思来讲,伪就是假的,元素是标签与标签包裹的内容,简单来说伪元素就是假的元素,假的反义词是真的,在页⾯中这些⼜是我们⾃⼰写的,所以它是真的。在这个html页⾯中,所有元素都会被偷偷加上开始与结束标签,这个就是伪元素,伪类选择器指的是⼀种操作状态!
1<!DOCTYPE html>
2<html lang="en">
3<head>
4<meta charset="UTF-8">
5<meta name="viewport" content="width=device-width, initial-scale=1.0">
6<title>css伪类选择器</title>
7<style type="text/css">
8 p{
9 color: brown;
10 border: 1px solid black;
11 height: 40px;
12 line-height: 40px;
13 }
14 p::before{
15 content: "before开始";
16 }
17 p::after{
18 content: "after结束";
19 }
20/* 针对块元素
21第⼀个字母::first-letter
22第⼀⾏⽂字::first-line */
23 div::first-letter{
24 font-size: 24px;
25 color: blue;
26 }
27 div::first-line{
28 color: yellowgreen;
29 font-style: initial;
30 font-weight:bolder;
31 }
32</style>
33</head>
34<body>
35<div class="box">www.dhnblog/ ⼤灰⽜博客技术为王世界,拼搏成就梦想,⾼度取决态度
36<!--before 开始-->
37<p>情⼈节祝福语送⼥朋友,很甜很撩,瞬间收服她的⼼!</p>
38<!--after 结束-->
39</div>
40</body>
41</html>
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论