修复我的项目的侧边栏

时间:2014-07-29 07:32:48

标签: html css css-float fixed

我有问题要修复项目右侧的侧边栏。你可以看一下here 所以导航和侧边栏需要修复,只需要滚动的主要内容 它需要看起来像这样:

#sidebar { background-color: #EEEEEE; float: right; width: 451px; height: 100%; position: fixed;} 

如果有人有解决方案,我将不胜感激

1 个答案:

答案 0 :(得分:0)

实际上很简单。你并没有完全离开。请参阅fiddle此处

<强> HTML

<div class="sidebar">
</div>

<强> CSS

.sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width:100px;
    background: red;
    z-index:10;
}
相关问题