tor-browser

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

list-and-grid-001-ref.html (334B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Lists: test list with grid as its first child</title>
      4 
      5 <p>There should be no extra line generated between the marker and the grid.</p>
      6 
      7 <ul>
      8  <li>
      9    <div style="display: inline-grid; grid-template-rows: 100px; align-items: center;">
     10      <div>grid</div>
     11    </div>
     12  </li>
     13 </ul>