tor-browser

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

computed-property-universal-syntax.html (331B)


      1 <!doctype html>
      2 <meta charset=utf8>
      3 <style>
      4 @property --my-registered-property {
      5  syntax: "<color>";
      6  inherits: false;
      7  initial-value: #f0f2f5;
      8 }
      9 
     10 .outer {
     11  --unregistered-property: var(--my-registered-property);
     12 }
     13 
     14 .inner {
     15  --unregistered-property: #c6cfdb;
     16 }
     17 </style>
     18 <div class="outer">
     19  <div class="inner"></div>
     20 </div>