tor-browser

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

flexbox-single-line-clamp-2-ref.html (532B)


      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  background: gray;
     12  height: 500px;
     13  width: 250px;
     14 }
     15 .panel {
     16  background: lightblue;
     17  border: 1px solid purple;
     18  height: 100px;
     19 }
     20 </style>
     21 <div class="container">
     22  <div class="panel">
     23  </div>
     24  <div class="panel">
     25  </div>
     26 </div>