tor-browser

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

calc-height-block-1.html (1445B)


      1 <!DOCTYPE HTML>
      2 <html>
      3 <head>
      4  <title>CSS Test: Test for height:calc() on blocks</title>
      5  <link rel="author" title="L. David Baron" href="https://dbaron.org/">
      6  <link rel="help" href="http://www.w3.org/TR/css3-values/#calc-notation">
      7  <link rel="match" href="calc-height-block-1-ref.html">
      8 <style type="text/css">
      9 body { margin: 0 }
     10 body > div { float: left; height: 100px; width: 1px; }
     11 body > div > div { background: blue }
     12 
     13 /* for auto-height tests */
     14 body > div > div > div > div { height: 10px }
     15 </style>
     16 </head>
     17 <body>
     18 
     19 <!-- tests with a fixed-height container -->
     20 <div><div style="height: calc(50px)"></div></div>
     21 <div><div style="height: calc(50%)"></div></div>
     22 <div><div style="height: calc(25px + 50%)"></div></div>
     23 <div><div style="height: calc(150% / 2 - 30px)"></div></div>
     24 <div><div style="height: calc(40px + 10% - 20% / 2)"></div></div>
     25 <div><div style="height: calc(40px - 10%)"></div></div>
     26 
     27 <!-- tests with an auto-height container -->
     28 <div><div><div style="height: calc(50px)"><div></div></div></div></div>
     29 <div><div><div style="height: calc(50%)"><div></div></div></div></div>
     30 <div><div><div style="height: calc(25px + 50%)"><div></div></div></div></div>
     31 <div><div><div style="height: calc(150% / 2 - 30px)"><div></div></div></div></div>
     32 <div><div><div style="height: calc(40px + 10% - 20% / 2)"><div></div></div></div></div>
     33 <div><div><div style="height: calc(40px - 10%)"><div></div></div></div></div>
     34 </body>
     35 </html>