tor-browser

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

css3-background-size.html (756B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4  <meta charset="UTF-8">
      5  <title>CSS Background-size Test: the size of the background image</title>
      6  <link rel="author" title="Xie Bing" href="mailto:451887565@qq.com">
      7  <link rel="reviewer" title="Dayang Shen" href="mailto:shendayang@baidu.com"> <!-- 2013-09-03 -->
      8  <link rel="help" href="http://www.w3.org/TR/css3-background/#the-border-width">
      9  <link rel="match" href="reference/css3-background-size-ref.html"/>
     10  <style type="text/css">
     11    div{
     12      width:60px;
     13      height:60px;
     14      background:url(support/60x60-green.png);
     15      background-size:50%;
     16      background-repeat: no-repeat;
     17    }
     18  </style>
     19 </head>
     20 <body>
     21  <p>The test passes if the green box is resized to 50%.</p>
     22  <div></div>
     23 </body>
     24 </html>