tor-browser

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

flexbox-single-line-clamp-1-ref.html (549B)


      1 <!doctype html>
      2 <!--
      3     Any copyright is dedicated to the Public Domain.
      4     http://creativecommons.org/publicdomain/zero/1.0/
      5 -->
      6 <meta charset="utf-8">
      7 <title>CSS Test Reference</title>
      8 <link rel="author" title="Emilio Cobos Álvarez" href="mailto:ecoal95@gmail.com">
      9 <style>
     10 .container {
     11  display: block;
     12  background: gray;
     13  max-height: 200px;
     14 }
     15 .panel {
     16  background: lightblue;
     17  width: 150px;
     18  height: 200px;
     19  border: 1px solid purple;
     20  box-sizing: border-box;
     21 }
     22 </style>
     23 <div class="container">
     24  <div class="panel">
     25  </div>
     26 </div>