tor-browser

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

border-box-and-max-content-001-ref.html (553B)


      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 should include borders</title>
      5 <style>
      6    .wrapper {
      7        border: 1px solid red;
      8        width: 90px;
      9    }
     10    .item {
     11        width: 50px;
     12        background-color: blue;
     13        padding: 10px 20px;
     14    }
     15    .content {
     16        width: 50px;
     17        height: 50px;
     18        background-color: green;
     19    }
     20 </style>
     21 <div class="wrapper"><div class="item"><div class="content"></div></div></div>