tor-browser

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

background-repeat-space-7.html (1260B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <meta charset="utf-8">
      5    <title>CSS Background: background-repeat: background image space</title>
      6    <link rel="author" title="Ethan Lin" href="mailto:ethlin@mozilla.com">
      7    <link rel="author" title="Mozilla" href="https://www.mozilla.org">
      8    <link rel="help" href="https://www.w3.org/TR/css3-background/#background-repeat">
      9    <link rel="match" href="background-repeat-space-7-ref.html">
     10    <meta name="assert" content="Test checks whether background-repeat: 'space round' works correctly or not.">
     11    <meta name="fuzzy" content="maxDifference=0-64; totalPixels=0-15878">
     12    <style type="text/css">
     13      .outer {
     14        width: 106px;
     15        height: 192px;
     16        border: 1px solid black;
     17        background-size: 32px 60px;
     18        background-image: url(support/aqua-yellow-32x32.png);
     19        background-repeat: space round;
     20      }
     21      .outer_gradient {
     22        width: 106px;
     23        height: 192px;
     24        border: 1px solid black;
     25        background-size: 32px 60px;
     26        background-image: linear-gradient(to top left, red, green);
     27        background-repeat: space round;
     28      }
     29    </style>
     30  </head>
     31  <body>
     32    <div class="outer"></div>
     33    <div class="outer_gradient"></div>
     34  </body>
     35 </html>