tor-browser

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

list-and-grid-001.html (518B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Lists: test list with grid as its first child</title>
      4 <link rel=help href="https://www.w3.org/TR/CSS22/generate.html#lists">
      5 <link rel=match href="list-and-grid-001-ref.html">
      6 <!-- https://bugs.chromium.org/p/chromium/issues/detail?id=767408 -->
      7 
      8 <p>There should be no extra line generated between the marker and the grid.</p>
      9 
     10 <ul>
     11  <li>
     12    <div style="display: grid; grid-template-rows: 100px; align-items: center;">
     13      <div>grid</div>
     14    </div>
     15  </li>
     16 </ul>