単純!ZurbFoundation自体はCompassに基づいています。したがって、「CompassStickyFooter」ミックスインを使用できます。
http://compass-style.org/reference/compass/layout/sticky_footer/
ここにそれを行う方法の例があります:http:
//compass-style.org/examples/compass/layout/sticky-footer/
しかし、あなたはただ行きます:
<div class='example'>
<div id='layout'>
<div id='header'>
<h1>Sticky Footer Example</h1>
</div>
<p>
This is the main content area.
</p>
<p>
In this example you should pretend that the red box
is actually the browser window.
</p>
<p>
Because, being a contrived example, it's not actually sticking
to the bottom of the page.
</p>
<div id='layout_footer'></div>
</div>
<div id='footer'>
This is the footer area.
</div>
</div>
そしてあなたの中でSCSS
@import "compass/reset.scss";
@import "compass/layout.scss";
@include sticky-footer(72px, "#layout", "#layout_footer", "#footer");
#header {
background: #999999;
height: 72px; }
#footer {
background: #cccccc; }
.example {
height: 500px;
border: 3px solid red;
p {
margin: 1em 0.5em; } }