CSS 伪类

CSS 伪类 :inminated 表示状态不确定或未知的元素。

更具体地说,:inminated 伪类针对以下元素:

  • 复选框 - <input type="checkbox">,其不确定值设置为 true。

  • 单选按钮 - <input type="radio">,其单选按钮组未列出任何选中的单选按钮。

  • 进度元素 - <progress> 处于不确定状态,即没有值属性。

语法

:indeterminate 

CSS :inminated 示例

这里是 checkox 和单选按钮的 :inminated 伪类的示例:

<html>
<head>
<style>
   input[type="checkbox"]:indeterminate {
      box-shadow: 0 0 5px 5px rgb(224, 5, 5);
   }

   input[type="radio"]:indeterminate {
      box-shadow: 0 0 5px 5px rgb(17, 235, 28);
   }

   div {
      padding: 10px;
   }
</style>
</head>
<body>
   <h2>:indeterminate selector 例子</h2>
   <form>
      <div>
         <input type="checkbox" id="box"> Checkbox
      </div>
      <div>
         <input type="radio" id="box1"> Radio
      </div>
      <script>
         var checkbox=document.getElementById("box");
         checkbox.indeterminate=true;

         var radio=document.getElementById("box1");
         radio.indeterminate=true;
      </script>
   </form>
</body>
</html> 

这里是单选按钮组的:不确定伪类示例:

<html>
<head>
<style>
   label {
      margin-right: .5em;
      position: relative;
      top: 1px;
   }
   input[type="radio"]:indeterminate + label {
      color: magenta;
      font-size: larger;
   }
   form {
      border: 3px solid black;
      width: 500px;
   }
</style>
</head>
<body>
   <h2>:indeterminate selector 例子</h2>
   <form>
      <p>单选按钮组的状态是不确定的,因此应用了 CSS 样式。</p>
      <p>选择任意单选按钮并查看更改:</p>
      <input type="radio" name="option" value="true" id="true">
      <label for="true">True</label>
      <input type="radio" name="option" value="false" id="false">
      <label for="false">False</label>
      <input type="radio" name="option" value="unknown" id="unknown">
      <label for="unknown">Unknown</label>
   </form>
</body>
</html> 

这里是进度元素的:不确定伪类示例:

<html>
<head>
<style>
   progress {
      margin: 8px;
   }

   progress:indeterminate {
      width: 300px;
      height: 50px;
   }
</style>
</head>
<body>
   <h2>:indeterminate selector 例子 - progress</h2>
   <progress></progress>
</body>
</html>