-
-
Save dannevang/6377122 to your computer and use it in GitHub Desktop.
Full height sidebar
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(".full-height").height($(".full-height").parent().height()); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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