Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save frontend-coder/a86b866362a1f029c1ab4a7e8af588cd to your computer and use it in GitHub Desktop.
Save frontend-coder/a86b866362a1f029c1ab4a7e8af588cd to your computer and use it in GitHub Desktop.
Прижимаю контейнер к низу браузера #css #html
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