属性选择器
1.属性选择器
对带有指定属性的HTML元素设置样式
2.属性和值选择器
示例
index.html1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style type="text/css">
[title]{
color:red;
}
[title=tt]{
color:green;
}
</style>
</head>
<body>
<p title="demo">属性选择器</p>
<p title="tt">属性值选择器</p>
</body>
</html>
最后更新: 2018年09月26日 12:02