Question

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;
}
Était-ce utile?

La solution

Demo

#nav {
    list-style: none;
    position: fixed;
    top: 20px;
    width: inherit;
}
#section-1{
    margin-top:200px;
}
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top