Last active
July 17, 2019 06:53
-
-
Save frontend-coder/a86b866362a1f029c1ab4a7e8af588cd to your computer and use it in GitHub Desktop.
Прижимаю контейнер к низу браузера #css #html
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
HTML | |
<div id="container"> | |
<div id="header"> | |
<!-- Содержимое шапки --> | |
</div> | |
<div id="body"> | |
<!-- Содержимое центральной части --> | |
</div> | |
<div id="footer"> | |
<!-- Содержимое нижнего блока --> | |
</div> | |
</div> | |
CSS | |
html, | |
body { | |
height:100%; | |
} | |
#container { | |
min-height:100%; | |
position:relative; | |
} | |
/*Стили для блока с шапкой*/ | |
#header { | |
background:#222; | |
padding:10px; | |
} | |
/*Стили для центральной части*/ | |
#body { | |
padding-bottom:70px; /* Высота блока "footer" */ | |
} | |
/*Стили для нижней части*/ | |
#footer { | |
position:absolute; | |
bottom:0; | |
width:100%; | |
height:70px; /* Высота блока "footer" */ | |
background:#66ccff; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment