tor-browser

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

inline-block-and-column-span-all.html (825B)


      1 <!DOCTYPE html>
      2 <title>Combining column-span and inline-block on the same element</title>
      3 <link rel="author" title="Morten Stenshorne" href="mstensho@chromium.org">
      4 <link rel="help" href="https://www.w3.org/TR/css-multicol-1/#column-span" title="6.1. column-span">
      5 <link rel="match" href="../reference/ref-filled-green-100px-square.xht">
      6 <meta name="assert" content="column-span:all only applies to block-level elements, i.e. not inline-blocks, for instance">
      7 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
      8 <div style="columns:4; column-gap:0; width:400px;">
      9  <div style="column-span:all; display:inline-block;">
     10    <div style="float:left; width:100px; height:50px; background:green;"></div>
     11    <div style="float:left; width:100px; height:50px; background:green;"></div>
     12  </div>
     13 </div>