:checked 选择器用于表示选中状态的radio(
<input type="radio">
), checkbox (<input type="checkbox">
) 或select元素中的option HTML元素(“option”)。
用户通过勾选/选中元素或取消勾选/取消选中,来改变该元素的 :checked 状态。
:checked
{
CSS 样式
}
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>鱼C-零基础入门学习Web(Html5+Css3)</title>
<style>
input:checked {
width: 66px;
height: 66px;
}
</style>
</head>
<body>
<form action="">
<input type="radio" checked="checked" value="male" name="gender"/> 男<br>
<input type="radio" value="female" name="gender"/> 女<br>
<input type="checkbox" checked="checked" value="Bike"/> 我爱C语言<br>
<input type="checkbox" value="Car"/> 我爱Web
</form>
</body>
</html>
表格中的数字表示支持该属性的第一个浏览器版本号。
Safari | Chrome | FireFox | IE |
1.0 | 1.0 | 1.0 | 5.0 |