属性选择器

属性选择器

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

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
input[type=text]{
width: 100px;
height: 100px;
background: red;
}
</style>
</head>
<body>
<input type="text">
<input type="password">
<input type="button">
<input type="submit">
</body>
</html>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
input[type=text][class='pwd']{
width: 100px;
height: 100px;
background: red;
}
</style>
</head>
<body>
<input type="text" id='username'>
<input type="text" class='pwd'>
<input type="password">
<input type="button">
<input type="submit">
</body>
</html>
坚持原创技术分享,您的支持将鼓励我继续创作!