我有以下內容的HTML頁面 -位置是:固定不工作
<div class="sidebar">
Some content here....
</div>
<div class="content">
content here too...
</div>
我想.sidebar是position:fixed
,但不是。內容。這是我在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;
}
基本上我想重現this。 但是我現在看到的第一眼看起來很完美,但是當您向下滾動時,側邊欄不會隨着您移動,而是停留在同一個位置。
Codepen demonstration
我該如何使它工作?
您在css代碼中存在拼寫錯誤。它是'位置'而不是'位置'。 –
我討厭自己:( – svineet
)不要恨自己,將來只要使用[驗證器](http://jigsaw.w3.org/css-validator/) –