tor-browser

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

object-view-box-xywh-ref.html (482B)


      1 <!DOCTYPE html>
      2 <html>
      3 <title>CSS object-view-box on an element with xywh() : ref</title>
      4 <link rel="author" href="mailto:khushalsagar@chromium.org">
      5 <link rel="help" href="https://drafts.csswg.org/css-images-4/#the-object-view-box">
      6 
      7 <style>
      8 .container {
      9  width: 25px;
     10  height: 50px;
     11  overflow: hidden;
     12 }
     13 .default {
     14  position: relative;
     15  top: -50px;
     16  left: -25px;
     17 }
     18 </style>
     19 <div class="container">
     20 <img class="default" src="support/exif-orientation-6-ru.jpg"></img>
     21 </div>