如何在Bootstrap

时间:2017-10-20 13:11:21

标签: css html5 bootstrap-4

我使用过bootstrap我希望将页面的最后一行赋予页面底部,并且该行是固定的,并且响应大小也是如此。

2 个答案:

答案 0 :(得分:5)

此行类需要具有以下属性:

.fixed-row-bottom { position: fixed; bottom: 0;}

HTML code:

<div class="row fixed-row-bottom">My fixed row</div>

答案 1 :(得分:0)

如果您发布代码,则更容易回答。您需要将固定位置应用于元素,如下所示:

.element {
  position:fixed;
  bottom:0;
  width:100%;
}