SOURCE

console 命令行工具 X clear

                    
>
console
<link rel="stylesheet" href="https://cdn.staticfile.org/foundation/5.5.3/css/foundation.min.css">
  <script src="https://cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script>
  <script src="https://cdn.staticfile.org/foundation/5.5.3/js/foundation.min.js"></script>
  <script src="https://cdn.staticfile.org/foundation/5.5.3/js/vendor/modernizr.js"></script>
<title>Foundation 实例</title>
<body>

<div class="row">
  <h2>网格 - 偏移量</h2>
  <p>可以使用 <code>.large-offset-*</code> (或 <code>.small-offset-*</code>) 类设置列向右移。 左侧外边距的列数量使用 * 号控制:</p>
  <div class="large-1 columns" style="background-color:yellow;">1</div>
  <div class="large-11 columns" style="background-color:pink;">11</div>
</div>
<div class="row">
  <div class="large-1 columns" style="background-color:yellow;">1</div>
  <div class="large-10 large-offset-1 columns" style="background-color:pink;">10, offset 1</div>
</div>
<div class="row">
  <div class="large-1 columns" style="background-color:yellow;">1</div>
  <div class="large-9 large-offset-2 columns" style="background-color:pink;">9, offset 2</div>
</div>
<div class="row">
  <div class="large-1 columns" style="background-color:yellow;">1</div>
  <div class="large-8 large-offset-3 columns" style="background-color:pink;">8, offset 3</div>
</div>

</body>