Created
April 13, 2015 10:20
-
-
Save hidaytrahman/8c7edf01dd9b33a13018 to your computer and use it in GitHub Desktop.
Equal height for all screen. all resolations will same layout, Use it without any terms ;)
This file contains 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
/*For Equal height for all screen*/ | |
//Md Hidaytullah - Web Designer and UI Developer | |
$(window).resize(function() { | |
$('.home-article').height($(window).height() - 100); | |
}); | |
$(window).trigger('resize'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment