标签: html twitter-bootstrap responsive-design
我不确定是否可以使用Bootstrap执行此操作?这样的事情:website template我想的可能是z指数。
答案 0 :(得分:0)
你可以;事实上,你甚至不需要一个框架来做到这一点。将导航栏定位为fixed或absolute。 (固定将相对于视口定位导航栏,绝对将相对于其容器定位。Read more.)然后,为导航栏指定z-index比任何其他元素都要大。
fixed
absolute
nav { position: fixed; z-index: 1 }
示例:https://jsfiddle.net/f6yhes0w/1/