1 回答

TA貢獻(xiàn)1806條經(jīng)驗(yàn) 獲得超5個(gè)贊
既然你正在使用position: fixed. 只需在導(dǎo)航側(cè)邊欄容器中將top和css 屬性設(shè)置為 0 即可。left
.wrapper {
width: 1024px;
margin: auto;
}
.left-sidebar {
z-index: 9999;
width: 200px;
background: #303030;
height:100%;
overflow: auto;
}
#sidebar {
min-width: 200px;
min-height: 200px;
background: #303030;
color: #fff;
position: fixed;
top: 0;
left: 0;
transition: all 0.3s;
z-index: 999;
min-height: 100%;
width: 25%;
float: left;
}
<div class="wrapper">
<div class="left-sidebar">
<nav id="sidebar">
- 1 回答
- 0 關(guān)注
- 148 瀏覽
添加回答
舉報(bào)