문제

I'm building a single page website and would like to put the fixed menu over the scroller content:

http://jsfiddle.net/VFQF8/

But using the fixed position, I can't keep the menu over the content. Any idea?

#nav {
    left: 20px;
    list-style: none;
    position: fixed;
    top: 20px;
}
도움이 되었습니까?

해결책

Demo

#nav {
    list-style: none;
    position: fixed;
    top: 20px;
    width: inherit;
}
#section-1{
    margin-top:200px;
}
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top