Skip to content

Instantly share code, notes, and snippets.

@Narga
Forked from joanhard/index
Created September 20, 2013 06:47
Show Gist options
  • Save Narga/6634102 to your computer and use it in GitHub Desktop.
Save Narga/6634102 to your computer and use it in GitHub Desktop.
<div class="row">
<div class="large-8 column">
<div class="main">My Main</div>
</div>
<div class="large-4 column full-height">
<aside class="sidebar">
My Sidebar
</aside>
</div>
</div>
$(".full-height").height($(".main").parent().height());
.full-height { display: table; }
.sidebar {
display: table-cell;
background: #eeeeee;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment