我正在构建单页网站,并希望将固定菜单放在滚动条内容上:
但是使用固定位置,我无法将菜单保留在内容上。有什么想法吗?
#nav {
left: 20px;
list-style: none;
position: fixed;
top: 20px;
}
答案 0 :(得分:0)
#nav {
list-style: none;
position: fixed;
top: 20px;
width: inherit;
}
#section-1{
margin-top:200px;
}