tor-browser

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

image-fallback-respect-max-width-ref.html (419B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>Image fallback respect max-width</title>
      4 <style>
      5  div {
      6    max-width: 200px;
      7  }
      8  img {
      9    width: 200px;
     10    height: auto;
     11  }
     12 </style>
     13 <body>
     14  <div>
     15    <img src="" width="10000" height="100">
     16    <img src="" width="10000" height="100"
     17      alt="Lorem ipsum dolor sit amet, consectetur adipisicing elit.">
     18    <img src="" width="1000" height="100">
     19  </div>
     20 </body>