https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 42d90e8f2b3a89cafe2e651288cc247773842f33 authored by B2G Bumper Bot on 29 August 2014, 02:21:03 UTC
Bumping manifests a=b2g-bump
Tip revision: 42d90e8
pref-width-1b.html
<!DOCTYPE html>
<html>
<head>
  <style>
  div { -moz-column-count:2; -moz-column-width:100px; -moz-column-gap:0; float:left; border:2px solid black; height:200px; }
  div.clear { clear:both; }
  div.gap { -moz-column-gap:80px; }
  span { display:inline-block; width:50px; }
  </style>
</head>
<body>
  <div>
    <span></span><br><span></span>
  </div>
  <div class="gap clear">
    <span></span><br><span></span>
  </div>
</body>
</html>
back to top