答案 0 :(得分:0)
我假设您正在尝试使用id bottom-list绝对定位元素。
为了使其转到页面底部添加
bottom:0;
到选择器。
通过这种方式,您可以指定绝对定位元素与包含元素底部的偏移量。
但是,如果您的布局中有一个父元素具有CSS属性
position: relative;
那么这可能会有所不同。
因此我建议最外面的容器元素,即.container
必须绝对定位bottom:0;
答案 1 :(得分:0)
如果您需要在底部修复响应引导程序navbar
,则可能需要从Bootstrap导航栏本身开始,然后在其上添加自定义样式
喜欢
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src='https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js'></script>
<link rel='stylesheet' href='https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css'>
<nav class="navbar navbar-default nav-justified fixed-bootm navbar-fixed-bottom">
<div class="container-fluid ">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav nav-tabs nav-justified">
<li class="active"><a href="#">01 INTRO <span class="sr-only">(current)</span></a></li>
<li><a href="#">02 WORK</a></li>
<li><a href="#">03 ABOUT</a></li>
<li><a href="#">04 CONTACTS</a></li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
注意:所有这些代码都带有bootstrap样式我没有写一行CSS
现在您可以开始添加自定义样式