我有一个包含以下内容的 HTML 页面 -
<div class="sidebar">
Some content here....
</div>
<div class="content">
content here too...
</div>
我希望.sidebar 是position:fixed
,但不是.content。这是我在 CSS 中尝试过的 -
*{box-sizing:border-box;}
.sidebar{
background:rgb(24, 33, 61);
text-align: right;
height: 100% !important;
width:30%;
postion:fixed;
left:0px;
top:0px;
bottom:0;
padding:1em;
color:white;
}
.content{
width:70%;
font-size:1.1em;
font-weight:normal;
position: absolute;
top:0;
right:0;
padding:2em;
}
基本上,我想重现这个. 但是我现在得到的乍一看看起来很完美,但是当你向下滚动时,.sidebar 不会随着你移动,它会停留在同一个地方。
Codepen 演示
我怎样才能让它工作?