css_sduty/06_CSS复合选择器/13_伪类选择器_UI伪类 copy.html
zhuyijun 96aa6f59ba feat(css): 新增选择器
1、伪类选择器
2、伪元素选择器
3、选择器优先级
2024-08-25 14:09:40 +08:00

37 lines
845 B
HTML

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>13_伪类选择器_UI伪类</title>
<style>
/* 选择的是勾选的复选框或单选框按钮 */
input:checked {
height: 100px;
width: 100px;
}
/* 选择的是被禁用的input元素 */
input:disabled {
background-color: gray;
}
/* 选择的是可以的input元素 */
input:enabled {
background-color: green;
}
</style>
</head>
<body>
<div>
<input type="checkbox">
<input type="radio" name="gender">
<input type="radio" name="gender">
<input type="text">
<input type="text" disabled>
</div>
</body>
</html>