Skip to content

Instantly share code, notes, and snippets.

@alexvas123
Last active July 9, 2016 09:44
Show Gist options
  • Save alexvas123/29435b0edb16ec3cabffc957f9d97aa4 to your computer and use it in GitHub Desktop.
Save alexvas123/29435b0edb16ec3cabffc957f9d97aa4 to your computer and use it in GitHub Desktop.
full-height-resize
function heightDetect() {
$('.main-head').css('height', $(window).height());
}
heightDetect();
$(window).resize(function () {
heightDetect();
});
// HTML
.main-head
min-height: 620px
padding-top: rem(20)
position: relative
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment