tor-browser

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

css3-modsel-78.xml (1165B)


      1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
      2 <html xmlns="http://www.w3.org/1999/xhtml">
      3 <head>
      4  <title>NEGATED :last-child pseudo-class</title>
      5  <style type="text/css"><![CDATA[.red { background-color : red }
      6 .t1 td:not(:last-child) { background-color : lime }
      7 p > *:not(:last-child) { background-color : lime }
      8 table.t1 td { border : thin black solid }
      9 ]]></style>
     10  <link rel="author" title="Daniel Glazman" href="http://glazman.org/"/>
     11  <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch"/>
     12  <link rel="help" href="https://www.w3.org/TR/css3-selectors/#selectors"/> <!-- bogus link to make sure it gets found -->
     13 </head>
     14 <body>
     15 <div>
     16  <table class="t1" border="1">
     17   <tr>
     18    <td class="red">green cell</td>
     19    <td class="red">green cell</td>
     20    <td>1.3</td>
     21   </tr>
     22   <tr>
     23    <td class="red">green cell</td>
     24    <td class="red">green cell</td>
     25    <td>2.3</td>
     26   </tr>
     27   <tr>
     28    <td class="red">green cell</td>
     29    <td class="red">green cell</td>
     30    <td>3.3</td>
     31   </tr>
     32  </table>
     33 </div>
     34 <p>This <span>paragraph should</span> be unstyled.</p>
     35 </body>
     36 </html>