如何在 Twitter 的 Bootstrap 导航栏中正确使用偏移量?
我使用 offset1 span6
作为主要内容,并希望对 navbar
内容应用相同的内容,但它无法正常工作 - 请参阅 现场演示。
I use offset1 span6
for the main content and wanted to apply the same for navbar
content, but it doesn't work properly - please see live demo.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
偏移量仅在
.row
的上下文中起作用,因此将.row
类添加到您的导航栏 div 中,它就可以正常工作。演示:http://jsfiddle.net/fJU4K/1/
Offsets only work within the context of a
.row
, so add the.row
class to your navbar div and it works just fine.Demo: http://jsfiddle.net/fJU4K/1/
看看这个:
http://jsfiddle.net/taZjV/
诀窍是
a) 从行中删除“offset1 span6”并使其成为自己的 div,
b) 从导航栏中删除 navbar-fixed-top
c) 将导航栏移动到 offset1 span6 div 内
Check this out:
http://jsfiddle.net/taZjV/
The trick is to
a) remove the "offset1 span6" from the row and make it a div of its own,
b) remove the navbar-fixed-top from the navbar
c) Move the navbar inside the offset1 span6 div