Skip to content

Instantly share code, notes, and snippets.

@pusanukbr
Created November 26, 2017 12:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pusanukbr/ba26f650e23f6168ce1bc38fd8ac2d8c to your computer and use it in GitHub Desktop.
Save pusanukbr/ba26f650e23f6168ce1bc38fd8ac2d8c to your computer and use it in GitHub Desktop.
Блок в высоту экрана
$(document).ready(function(){
function heightDetect(){
$(".main_header").css("min-height", $(window).height());
};
heightDetect();
$(window).resize(function(){
heightDetect();
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment