https://github.com/mozilla/gecko-dev
Raw File
Tip revision: b2aec1227b4210174cff615d03acc86f4d11a18a authored by seabld on 30 September 2011, 03:09:56 UTC
Added tag SEAMONKEY_2_5b1_RELEASE for changeset FIREFOX_8_0b1_RELEASE. CLOSED TREE a=release
Tip revision: b2aec12
min-width-1a.html
<!DOCTYPE html>
<html>
<head>
  <style>
  div { -moz-column-count:2; -moz-column-gap:0; border:2px solid black; height:200px; }
  div.gap { -moz-column-gap:80px; }
  span { display:inline-block; width:50px; }
  </style>
</head>
<body>
  <table width="1"><tr><td><div>
    <span></span>
  </div></tr></td></table>
  <table width="1"><tr><td><div class="gap">
    <span></span>
  </div></tr></td></table>
</body>
</html>
back to top