tor-browser

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

border-box-and-max-content-002-ref.html (444B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1">
      4 <title>border-box and max-content with aspect ratio should include borders</title>
      5 <style>
      6    .wrapper {
      7        border: 1px solid red;
      8        width: 500px;
      9    }
     10    .item {
     11        width: 500px;
     12        height: 500px;
     13        background-color: blue;
     14    }
     15 </style>
     16 <div class="wrapper"><div class="item"></div></div>