tor-browser

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

background-image-004.html (911B)


      1 <!DOCTYPE html>
      2 <title>CSS Backgrounds: background-image <a> layered images</title>
      3 <link rel="author" title="Justin Hill" href="http://www.justin-hill.com">
      4 <link rel="help" href="http://www.w3.org/TR/css3-background/#the-background-image">
      5 <link rel="match" href="reference/background-image-001-ref.html">
      6 <meta name="assert" content="Test checks that background-image displays multiple images in correct order on <a> tag.">
      7 <style>
      8    .container {
      9      top:50px;
     10      left:50px;
     11      width: 100px;
     12      height: 100px;
     13    }
     14 
     15    a {
     16      width:100px;
     17      height:100px;
     18      color:transparent;
     19      font-size: 50px;
     20      background-image: url("support/green.png"), url("support/red.png");
     21      background-color: red;
     22      display: block;
     23    }
     24 </style>
     25 <body>
     26    <p> Test passes if green image shows and no red visable.</p>
     27    <div class="container">
     28      <a href="#">x</a>
     29    </div>
     30 </body>