我需要在我的页面上放置一个粘性页脚,但是我没有为我的页脚设置明确的高度。在较小的屏幕上 - 行调整大小,页脚变长。

因此,getbootstrap 上提供的默认粘性页脚示例不起作用,因为它需要固定的页脚高度。

有什么方法可以实现吗?

/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}
body {
  /* Margin bottom by footer height */
  margin-bottom: 60px;
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  /* Set the fixed height of the footer here */
  height: 60px;
  line-height: 60px; /* Vertically center the text there */
  background-color: #f5f5f5;
}


/* Custom page CSS
-------------------------------------------------- */
/* Not required for template or sticky footer method. */

body > .container {
  padding: 60px 15px 0;
}

.footer > .container {
  padding-right: 15px;
  padding-left: 15px;
}

code {
  font-size: 80%;
}

最佳答案

现在 Bootstrap 4 是 flexbox,粘性页脚可以使用...

<wrapper class="d-flex flex-column">
    <nav>
    </nav>
    <main class="flex-fill">
    </main>
    <footer>
    </footer>
</wrapper>

body, wrapper {
   min-height:100vh;
}

.flex-fill {
   flex:1 1 auto;
}
演示:Bootstrap 4.0 Sticky Footer
注意: flex-fill 实用程序类是 included in the Bootstrap 4.1 and later 版本。所以在那之后发布额外的 flex-fill 的 CSS 将不再需要。
Bootstrap 4.1 开始,有一个 min-vh-100 实用程序类,这意味着您不需要额外的 CSS。
演示:Bootstrap 4.1+ Sticky Footer

关于html - Bootstrap 4 - 粘性页脚 - 动态页脚高度,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45912296/

10-16 21:17