tor-browser

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

text-align-last-015.html (813B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Text Test: text-align-last applied to last line in the second column</title>
      4 <link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
      5 <link rel="author" title="Mozilla" href="https://www.mozilla.org/">
      6 <link rel="help" href="https://drafts.csswg.org/css-text-3/#text-align-last-property">
      7 <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1817235">
      8 <link rel="stylesheet" type="text/css" href="/fonts/ahem.css">
      9 <link rel="match" href="text-align-last-015-ref.html">
     10 
     11 <style>
     12 :root {
     13  font: 25px/1 Ahem;
     14 }
     15 .multicol {
     16  width: 200px;
     17  column-count: 2;
     18  column-gap: 0;
     19  border: 5px solid orange;
     20 }
     21 .multicol > div {
     22  text-align: start;
     23  text-align-last: end;
     24 }
     25 </style>
     26 
     27 <div class="multicol">
     28  <div>ab ab ab ab</div>
     29 </div>