tor-browser

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

style-01.html (1567B)


      1 <!DOCTYPE html>
      2 <title>The style attribute</title>
      3 <link rel="match" href="style-01-ref.html">
      4 <link rel="author" title="Ms2ger" href="mailto:ms2ger@gmail.com">
      5 <link rel="help" href="https://html.spec.whatwg.org/multipage/#the-style-attribute">
      6 <link rel="help" href="http://www.w3.org/TR/css-style-attr/#syntax">
      7 <link rel="help" href="http://www.w3.org/TR/CSS21/cascade.html#cascading-order">
      8 <link rel="help" href="http://www.w3.org/TR/CSS21/cascade.html#specificity">
      9 <style>
     10 #idsel { background: red; }
     11 #idsel2 { background: limegreen !important; }
     12 </style>
     13 <div id="test">
     14 <p style="background:limegreen">This line should have a green background.
     15 <p style="/**/background:limegreen">This line should have a green background.
     16 <p style="background/**/:limegreen">This line should have a green background.
     17 <p style="background:/**/limegreen">This line should have a green background.
     18 <p style="background:limegreen/**/">This line should have a green background.
     19 <p id="idsel1" style="background:limegreen">This line should have a green background.
     20 <p id="idsel2" style="background:red">This line should have a green background.
     21 <p style="background:limegreen; background:r/**/ed">This line should have a green background.
     22 <p style="background:limegreen;}">This line should have a green background.
     23 <p style="};background:limegreen">This line should have a green background.
     24 <p style="background:red;};background:limegreen">This line should have a green background.
     25 <p style="background:limegreen;{background:red}">This line should have a green background.
     26 </div>