其他分享
首页 > 其他分享> > Bootstrap系列 -- 43. 固定导航条

Bootstrap系列 -- 43. 固定导航条

作者:互联网

Bootstrap系列 -- 43. 固定导航条

2015-06-29 21:13  贺臣  阅读(2802)  评论(0)  编辑  收藏

 

  很多情况之一,设计师希望导航条固定在浏览器顶部或底部,这种固定式导航条的应用在移动端开发中更为常见。Bootstrap框架提供了两种固定导航条的方式:

 

   .navbar-fixed-top:导航条固定在浏览器窗口顶部

  .navbar-fixed-bottom:导航条固定在浏览器窗口底部

<div class="navbar navbar-default navbar-fixed-top" role="navigation">
 …
</div>
<div class="content">我是内容</div>
<div class="navbar navbar-default navbar-fixed-bottom" role="navigation">
 …
</div>

 

标签:浏览器,--,Bootstrap,43,固定,导航条
来源: https://blog.51cto.com/u_14071312/2850112