tor-browser

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

multicol-list-item-008.html (552B)


      1 <!DOCTYPE html>
      2 <link rel="help" href="https://www.w3.org/TR/css-multicol-1/">
      3 <link rel="author" title="Koji Ishii" href="mailto:kojii@chromium.org">
      4 <link rel="match" href="multicol-list-item-008-ref.html">
      5 <style>
      6 #columns {
      7  font-size: 20px;
      8  line-height: 50px;
      9  columns: 2;
     10  column-fill: auto;
     11  width: 200px;
     12  height: 100px;
     13  margin-left: 50px;
     14 }
     15 #li {
     16  display: list-item;
     17 }
     18 </style>
     19 <div id="columns">
     20  <div style="height: 80px">Normal</div>
     21  <div id="li">
     22    <div style="height: 10px"></div>
     23    <div>List item</div>
     24  </div>
     25 </div>