CSS部分
CSS3属性选择器(类选择器、属性选择器、伪类选择器,权重都为10)
- 类选择器
- 属性选择器
选择符 | 简介 |
E[att] | 选择具有att属性的E元素 |
E[att="val"] | 选择具有att属性且属性值等于val的E元素 |
E[att^="val"] | 匹配具有att属性、且以val开头的E元素 |
E[att$="val"] | 匹配具有att属性、且以val结尾的E元素 |
E[att*="val"] | 匹配具有att属性、且值中含有val的E元素 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
button {
cursor: pointer;
/* 鼠标为手型 */
}
/* 属性选择器使用方法 */
/* 选择的是:既有button又有disabled这个属性的元素 */
/* 类选择器、属性选择器、伪类选择器,权重都为10,所以优先级大于 上面的button*/
/* 1.直接写属性 */
button[disabled] {
cursor: default;
}
/* 2.属性等于值 */
input[type="search"] {
color: pink;
}
/* 3.属性以某个值开头 */
div[class^="icon"] {
color: rebeccapurple;
}
/* 4.属性以某个值结尾 */
div[class$="icon"] {
color: red;
}
/* 5.可以在任意位置的 */
/* div[class*="icon"] {
color: rgb(69, 218, 49)
} */
</style>
</head>
<body>
<!-- disabled禁用按钮 -->
<button>按钮</button>
<button>按钮</button>
<button disabled>按钮</button>
<button disabled>按钮</button>
<br>
<input type="text" name="" id="" value="文本框">
<input type="text" name="" id="" value="文本框">
<input type="text" name="" id="" value="文本框">
<br>
<input type="search" name="" id="" value="搜索框">
<input type="search" name="" id="" value="搜索框">
<input type="search" name="" id="" value="搜索框">
<div class="icon1">图标1</div>
<div class="icon2">图标2</div>
<div class="icon3">图标3</div>
<div class="iicon3">图标4</div>
<div class="icon">图标5</div>
</body>
</html>
- 伪类选择器(有冒号)
选择符 | 简介 |
E:first-child | 匹配父元素中的第一个子元素E |
E:last-child | 匹配父元素中最后一个E元素 |
E:nth-child(n) | 匹配父元素中第n个子元素 |
E:first-of-type | 指定类型E中的第一个 |
E:last-of-type | 指定类型E中的最后一个 |
E:nth-of-type(n) | 指定类型E中的第n个 |
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
ul li:first-child {
color: aqua;
}
ul li:last-child {
color: red;
}
ul li:nth-child(6) {
color: pink;
}
</style>
</head>
<body>
<ul>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>
<li>6</li>
<li>7</li>
<li>8</li>
</ul>
</body>
注:nth-child(n)
- n可以是数字、关键字和公式
- n是数字则代表选择第几个
- 常见的关键词有even偶数、odd奇数
- 常见的公式如下(如果n是公式,则从0开始计算)
- 但是,第0个元素或者超出了元素的个数会被忽略(比如第0个元素则为0忽略)
公式 | 取值 |
2n | 偶数 |
2n+1 | 奇数 |
5n | 5 10 15... |
n+5 | 从第五个开始(包含第五)到最后 |
-n+5 | 前五个(包含第五) |
例如:奇偶行变色
1、even偶数、odd奇数
ul li:nth-child(even) {
color: yellow;
}
ul li:nth-child(odd) {
color: red;
}
2、公式
ul li:nth-child(2n) {
color: peru;
}
ul li:nth-child(2n+1) {
color: blue;
}
例如:n+5 / -n+5
ul li:nth-child(n+5) {
color: brown;
}
ul li:nth-child(-n+5) {
color: red;
}
注::nth-child(n)选择父元素里面的第n个孩子,不管里面的孩子是否同一个类型
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
/* nth只区分第一个孩子是谁而不区分标签相同与否 */
/* div :nth-child(1) {
color: blue;
}
div :nth-child(2) {
color: green;
} */
/* 会发现不变色,因为下面表示的是第一个元素既是span又是第一个孩子,下面第一个孩子是p标签所以不成立 */
div span:nth-child(1) {
color: yellow;
}
/* n=2则成立 */
div span:nth-child(2) {
color: yellow;
}
</style>
</head>
<body>
<div>
<p>我是p标签</p>
<span>我是span标签</span>
<span>我是span标签</span>
<span>我是span标签</span>
</div>
</body>
方法:还可以用of-type来指定标签来改变样式
div span:first-of-type {
color: yellow;
}
div span:last-of-type {
color: red;
}
div span:nth-of-type(2) {
color: green;
}
- 伪元素选择器
选择符 | 简介 |
::before | 在元素内部的前面插入元素 |
::after | 在元素内部的后面插入元素 |
注:
- before和after必须要有content属性
- before在内容的前面,after在内容的后面
- before和after创建一个元素,但属于行内元素。
- 因为在DOM里面看不见刚才创建的元素,所以称为伪元素(如果要给宽高,可以设置display:block或者inline-block)
- 伪元素和标签选择器一样,权重为1
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
div {
width: 300px;
height: 300px;
border: 1px solid #000;
}
div::before {
content: "我";
}
div::after {
content: "猪";
}
</style>
</head>
<body>
<div>是</div>
</body>
案例:伪元素字体图标
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="/font_xx6rr9gaey8/iconfont.css">
<style>
div,
p {
position: relative;
width: 249px;
height: 35px;
border: 1px solid red;
}
span {
position: absolute;
top: 10px;
right: 10px;
}
/* 伪元素选择器自成空间不必带span */
p::after {
content: "\e603";
position: absolute;
top: 10px;
right: 10px;
font-family: "iconfont";
}
</style>
</head>
<body>
<div>
<span class="iconfont icon-search"></span>
</div>
<br>
<div>
<span class="iconfont icon-lianxi"></span>
</div>
<p></p>
</body>
注:现在字体图标的使用没那么麻烦了,这只是为了展示伪元素选择器的自成空间才这样做的。
例:三角形(伪元素)
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
div {
position: relative;
width: 249px;
height: 35px;
border: 1px solid #000;
}
div::after {
content: "";
position: absolute;
top: 10px;
right: 15px;
width: 10px;
height: 10px;
border-right: 1px solid red;
border-bottom: 1px solid red;
transform: rotate(45deg);
transition: all 0.2s;
}
/* 鼠标经过div里面的三角旋转 */
div:hover::after {
transform: rotate(225deg);
}
</style>
</head>
<body>
<div></div>
</body>