Skip to content

Instantly share code, notes, and snippets.

@dannevang
Forked from joanhard/index
Last active December 21, 2015 22:42
Show Gist options
  • Save dannevang/6377122 to your computer and use it in GitHub Desktop.
Save dannevang/6377122 to your computer and use it in GitHub Desktop.
Full height sidebar
<div class="row">
<div class="large-8 column">
My Content
</div>
<div class="large-4 column full-height">
<aside class="sidebar">
My Sidebar
</aside>
</div>
</div>
$(".full-height").height($(".full-height").parent().height());
.full-height { display: table; height: 100%; }
.sidebar {
display: table-cell;
background: #eeeeee;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment