Информация об изменениях

Сообщение Re: Подвал (footer), всегда прижатый к низу страницы от 18.11.2018 14:17

Изменено 18.11.2018 14:26 vsb

Re: Подвал (footer), всегда прижатый к низу страницы
Я такой вариант использую. Подразумевает футер фиксированной высоты.

<!DOCTYPE html>
<html>
<head>
<style>
html, body {
  height: 100%;
}
body {
  margin: 0;
}
#body-wrapper {
  min-height: 100%;
  margin-bottom: -50px;
}
#footer, #footer-push {
  height: 50px;
}
</style>
</head>
<body>
  <div id=body-wrapper>
    <div id=body>
      Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor
      incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
      exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute
      irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla
      pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia
      deserunt mollit anim id est laborum.
    </div>
    <div id=footer-push>
    </div>
  </div>
  <div id=footer>
    Footer
  </div>
</body>
</html>
Re: Подвал (footer), всегда прижатый к низу страницы
Я такой вариант использую. Подразумевает футер фиксированной высоты.

<!DOCTYPE html>
<html>
<head>
<style>
html, body {
  height: 100%;
}
body {
  margin: 0;
}
#body-wrapper {
  min-height: 100%;
  margin-bottom: -50px;
}
#footer, #footer-push {
  height: 50px;
}
</style>
</head>
<body>
  <div id=body-wrapper>
    <div id=body>
      Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor
      incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
      exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute
      irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla
      pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia
      deserunt mollit anim id est laborum.
    </div>
    <div id=footer-push></div>
  </div>
  <div id=footer>
    Footer
  </div>
</body>
</html>