tor-browser

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

background-repeat-round-1a.html (1127B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <meta charset="utf-8">
      5    <title>CSS Background: background-repeat: background image round</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-round-1-ref.html">
     10    <meta name="assert" content="Test checks whether background-repeat: 'round' works correctly or not.">
     11    <style type="text/css">
     12      .outer {
     13        width: 72px;
     14        height: 72px;
     15        border: 1px solid black;
     16        background-image: url(support/aqua-yellow-32x32.png);
     17        background-repeat: round;
     18      }
     19      .outer_gradient {
     20        width: 72px;
     21        height: 72px;
     22        border: 1px solid black;
     23        background-size: 32px 32px;
     24        background-image: linear-gradient(to top left, red, green);
     25        background-repeat: round;
     26      }
     27    </style>
     28  </head>
     29  <body>
     30    <div class="outer"></div>
     31    <div class="outer_gradient"></div>
     32  </body>
     33 </html>