tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

indeterminate-radio-group.html (851B)


      1 <!doctype html>
      2 <meta charset="utf-8">
      3 <title>:indeterminate and input type=radio</title>
      4 <link rel="author" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez">
      5 <link rel="author" href="https://mozilla.org" title="Mozilla">
      6 <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1861346">
      7 <link rel="match" href="indeterminate-radio-group-ref.html">
      8 <style>
      9 input:checked + label {
     10  background: green;
     11 }
     12 input:indeterminate + label {
     13  background: red;
     14 }
     15 </style>
     16 <form>
     17  <input type="radio" name="a" id="one" value="1">
     18  <label for="one">One</label>
     19 
     20  <input type="radio" name="a" id="two" value="2" checked>
     21  <label for="two">Two</label>
     22 
     23  <input type="radio" name="a" id="three" value="3">
     24  <label for="three">Three</label>
     25 
     26  <input type="radio" name="a" id="four" value="4">
     27  <label for="four">Four</label>
     28 </form>