带有菜单的单页内容

时间:2013-04-24 00:51:41

标签: css single-page-application singlepage

我正在构建单页网站,并希望将固定菜单放在滚动条内容上:

http://jsfiddle.net/VFQF8/

但是使用固定位置,我无法将菜单保留在内容上。有什么想法吗?

#nav {
    left: 20px;
    list-style: none;
    position: fixed;
    top: 20px;
}

1 个答案:

答案 0 :(得分:0)

Demo

#nav {
    list-style: none;
    position: fixed;
    top: 20px;
    width: inherit;
}
#section-1{
    margin-top:200px;
}