tor-browser

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

c31-important-000.xht (1351B)


      1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
      2 <html xmlns="http://www.w3.org/1999/xhtml">
      3  <head>
      4   <title>CSS Test: important</title>
      5   <link rel="help" href="http://www.w3.org/TR/REC-CSS1#important"/>
      6   <link rel="author" title="CSS1 Test Suite Contributors" href="http://www.w3.org/Style/CSS/Test/CSS1/current/tsack.html"/>
      7   <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch"/>
      8   <link rel="match" href="c12-grouping-000-ref.xht" />
      9 
     10   <style type="text/css"><![CDATA[
     11    p { color: green ! important; }
     12    p { color: red; }
     13    p#id1 { color: red; }
     14   ]]></style>
     15   <link rel="help" href="http://www.w3.org/TR/CSS21/cascade.html#important-rules" title="6.4.2 !important rules"/>
     16   <link rel="help" href="http://www.w3.org/TR/css-cascade-3/#importance"/>
     17   <link rel="help" href="http://www.w3.org/TR/css-cascade-4/#importance"/>
     18   <link rel="help" href="http://www.w3.org/TR/CSS21/cascade.html#cascading-order" title="6.4.1 Cascading order"/>
     19   <link rel="help" href="http://www.w3.org/TR/css-cascade-3/#cascading"/>
     20   <link rel="help" href="http://www.w3.org/TR/css-cascade-4/#cascading"/>
     21  </head>
     22  <body>
     23   <p> This sentence should be green. </p>
     24   <p id="id1"> This sentence should be green. </p>
     25   <p style="color: red;"> This sentence should be green. </p>
     26  </body>
     27 </html>