Web速查-索引

:default

定义

: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>
小田鱼
小甲鱼
我爱C语言
我爱Web

浏览器支持

表格中的数字表示支持该属性的第一个浏览器版本号

Safari Chrome FireFox IE
1.0 1.0 1.0 5.0