我有问题要修复项目右侧的侧边栏。你可以看一下here
所以导航和侧边栏需要修复,只需要滚动的主要内容
它需要看起来像这样:
#sidebar { background-color: #EEEEEE; float: right; width: 451px; height: 100%; position: fixed;}
如果有人有解决方案,我将不胜感激
答案 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;
}