在流体 Twitter Bootstrap 2.0 中创建固定侧边栏导航
在流体 Bootstrap 2.0 布局中,在滚动时保持固定侧边栏导航可以是实现了。操作方法如下:
更新的 CSS:
.sidebar-nav-fixed { padding: 9px 0; position: fixed; left: 20px; top: 60px; width: 250px; } .row-fluid > .span-fixed-sidebar { margin-left: 290px; }
有反应修改:
要适应不同的屏幕尺寸,请考虑使用媒体查询。例如:
@media (max-width: 979px) { .sidebar-nav-fixed { position: static; width: auto; } }
移动视图的附加方法:
要保持固定侧边栏直到它在小屏幕上变为静态,请将 CSS 调整为如下:
@media (max-width: 767px) { .sidebar-nav-fixed { position: static; width: auto; } }
注意:对于 2.0.4 之后的 Bootstrap 版本,请考虑使用 Affix jQuery 插件,它提供类似的功能。
以上是如何在流畅的 Twitter Bootstrap 2.0 布局中创建固定侧边栏导航?的详细内容。更多信息请关注PHP中文网其他相关文章!