tor-browser

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

object-view-box-size-containment.html (555B)


      1 <!DOCTYPE html>
      2 <html>
      3 <title>CSS object-view-box on an element with size containment</title>
      4 <link rel="author" href="mailto:khushalsagar@chromium.org">
      5 <link rel="match" href="object-view-box-size-containment-ref.html">
      6 <link rel="help" href="https://drafts.csswg.org/css-images-4/#the-object-view-box">
      7 
      8 <style>
      9 .default {
     10  object-view-box: inset(50px 0px 0px 0px);
     11  object-fit: fill;
     12  contain: size;
     13  width: 50px;
     14  height: 100px;
     15  clip-path: inset(1px 0px 0px 0px);
     16 }
     17 </style>
     18 <img class="default" src="support/exif-orientation-6-ru.jpg"></img>