:default选择器用于表示默认状态的按钮(
<input type="button">
),radio(<input type="radio">
), checkbox (<input type="checkbox">
) 或select元素中的option HTML元素(“option”)。
:default
{
CSS 样式
}
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>鱼C-零基础入门学习Web(Html5+Css3)</title>
<style>
input:default {
box-shadow: 0 0 1px 1px green;
}
</style>
</head>
<body>
<form action="">
<input type="radio" value="fake" name="same" /> 小田鱼<br>
<input type="radio" value="star" checked="checked" name="same" /> 小甲鱼<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 |