tor-browser

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

css3-modsel-32.xml (1023B)


      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>:first-child pseudo-class</title>
      5  <style type="text/css"><![CDATA[.red { background-color : red }
      6 .t1 td:first-child { background-color : lime }
      7 p > *:first-child { background-color : lime }
      8 ]]></style>
      9  <link rel="author" title="Daniel Glazman" href="http://glazman.org/"/>
     10  <link rel="help" href="https://www.w3.org/TR/css3-selectors/#selectors"/> <!-- bogus link to make sure it gets found -->
     11 </head>
     12 <body>
     13 <div>
     14 <table class="t1" border="1">
     15  <tr>
     16    <td class="red">green cell</td>
     17    <td>1.2</td>
     18    <td>1.3</td>
     19  </tr>
     20  <tr>
     21    <td class="red">green cell</td>
     22    <td>2.2</td>
     23    <td>2.3</td>
     24  </tr>
     25  <tr>
     26    <td class="red">green cell</td>
     27    <td>3.2</td>
     28    <td>3.3</td>
     29  </tr>
     30 </table>
     31 </div>
     32 <p>This paragraph contains some text
     33          <span>and a span that should have a green background</span>
     34 </p>
     35 </body>
     36 </html>