tor-browser

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

list-and-flex-001-ref.html (411B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Lists: test list with flex as its first child</title>
      4 
      5 <p>There should be no extra line generated between the marker and the flex.</p>
      6 
      7 <ul>
      8  <li>
      9    <div style="border: 1px black solid;">
     10      <div style="display: inline-flex; align-items: flex-end; height: 200px;">
     11        <span style="line-height: 50px">text</span>
     12      </div>
     13    </div>
     14  </li>
     15 </ul>