tor-browser

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

multicol-span-all-list-item-002-ref.html (1237B)


      1 <!DOCTYPE html>
      2 <html>
      3  <meta charset="utf-8">
      4  <title>CSS Multi-column Layout Test Reference: columns with list-item, column-span, and overflow</title>
      5  <link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
      6  <link rel="author" title="Mozilla" href="http://www.mozilla.org/">
      7 
      8  <style>
      9  li {
     10    width: 300px;
     11    outline: 1px solid black;
     12    margin-bottom: 1em;
     13    overflow: hidden;
     14  }
     15  h3 {
     16    outline: 1px solid blue;
     17    margin: 0;
     18  }
     19  </style>
     20 
     21  <body>
     22    <ul>
     23      <li style="list-style-position: outside;">
     24        <div>bullet outside</div>
     25        <h3>spanner</h3>
     26      </li>
     27      <li style="list-style-position: inside;">
     28        bullet inside
     29        <h3>spanner</h3>
     30      </li>
     31      <li style="list-style-position: outside;">
     32        <h3>spanner (bullet outside)</h3>
     33      </li>
     34      <li style="list-style-position: inside;">
     35        <h3>spanner (bullet inside)</h3>
     36      </li>
     37      <li style="list-style-position: outside;">
     38        <div>
     39          <h3>nested spanner (bullet outside)</h3>
     40        </div>
     41      </li>
     42      <li style="list-style-position: inside;">
     43        <div>
     44          <h3>nested spanner (bullet inside)</h3>
     45        </div>
     46      </li>
     47    </ul>
     48  </body>
     49 </html>