tor-browser

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

border-box-and-max-content-003-ref.html (534B)


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