tor-browser

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

background-position-bottom-right-repeat-round.html (647B)


      1 <!doctype html>
      2 <title>background-position with 'bottom' and 'right' edge keywords with background-repeat 'round'</title>
      3 <link rel="help" href="https://drafts.csswg.org/css-backgrounds/#background-position">
      4 <link rel="help" href="https://drafts.csswg.org/css-backgrounds/#background-repeat">
      5 <link rel="match" href="reference/background-position-bottom-right-repeat-round-ref.html">
      6 <style>
      7  #target {
      8    width: 100px;
      9    height: 100px;
     10    background-image: linear-gradient(45deg, lime, green);
     11    background-repeat: round;
     12    background-size: 51px 51px;
     13    background-position: right 25% bottom 25%;
     14  }
     15 </style>
     16 <div id="target"></div>