How to position a top menu as fixed, such that when we scroll, the menu doesn't move?
This doesn't work:
body { overflow-y: scroll; }
#header { position:fixed; width:100%; height:50px; background-color:yellow; }
#container { padding-top: 60px; }
<div id="header">Bonjour</div>
<div id="container">Blah<br>Blah<br>Blah<br>Blah<br>Blah<br>Blah<br>Blah<br>Blah<br>Blah<br>Blah<br>Blah<br>Blah<br>Blah<br>Blah<br>Blah<br>Blah<br>Blah<br>Blah<br>Blah<br>Blah<br>Blah<br></div>