tor-browser

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

background-position-right-in-body.html (594B)


      1 <!doctype html>
      2 <title>background-position with 'right' edge keywords when painting background for body in offset document root</title>
      3 <link rel="help" href="https://drafts.csswg.org/css-backgrounds/#background-position">
      4 <link rel="match" href="../../filter-effects/reference/green-100x100.html">
      5 <style>
      6  html {
      7    margin: 8px;
      8  }
      9  body {
     10    background-image: linear-gradient(green, green), linear-gradient(red, red);
     11    background-size: 100px 100px, 100px 100px;
     12    background-position: right 100% top 0%, left 0% top 0%;
     13    background-repeat: no-repeat;
     14  }
     15 </style>
     16 <body></body>