小码哥的IT人生

CSS :default 选择器 详解

css3基础 2023-07-22 16:38:25小码哥的IT人生shichen

CSS :default 选择器

实例

为默认的 input 元素添加红色阴影色:

input:default { box-shadow: 0 0 1px 1px red; }

完整实例:

<!DOCTYPE html>
<html>
<head>
<style>
input:default {
  box-shadow: 0 0 1px 1px red;
}
</style>
</head>
<body>
<h1>default 选择器</h1>
<p>:default 选择器在一组相关元素中选择默认表单元素。</p>
<p>默认情况下,“男性”单选按钮处于选中状态:</p>
<form action="">
  <input type="radio" name="gender" value="male" checked> 男性<br>
  <input type="radio" name="gender" value="female"> 女性<br>
  <input type="radio" name="gender" value="other"> 其他
</form>
<p>Internet Explorer 11 以及更早的版本不支持 :default 选择器。</p>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

定义和用法

:default 选择器用于在一组相关元素中选取默认表单元素。

:default 选择可用于以下元素:

  1. <button>
  2. <input type="checkbox">
  3. <input type="radio">
  4. <option>
版本: CSS3

浏览器支持

表格中的数字注明了完全支持该选择器的首个浏览器版本。

选择器          
:default 10.0 12.0 4.0 5.0 10.0

注释:Internet Explorer 11 以及更早的版本不支持 :default 选择器。

CSS 语法

:default {
  css declarations;
}

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024