tor-browser

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

text-indent-min-max-content-001.html (466B)


      1 <!DOCTYPE html>
      2 <link rel="help" href="https://drafts.csswg.org/css-text-3/#text-indent-property">
      3 <link rel="match" href="reference/text-indent-min-max-content-001-ref.html">
      4 <link rel="stylesheet" type="text/css" href="/fonts/ahem.css">
      5 <style>
      6 div {
      7  border: 1px solid;
      8  font: 10px Ahem;
      9  text-indent: 5em;
     10 }
     11 .min {
     12  width: min-content;
     13 }
     14 .max {
     15  width: max-content;
     16 }
     17 </style>
     18 <div class="min">
     19  12 456 89012
     20 </div>
     21 <div class="max">
     22  12 456 89012
     23 </div>