Reputation: 4267
In my site, I have a topBar. I want this to be full screen, but I want the vertical page scrollbar to be shown, like the header for StackOverflow.
My css is:
#topBar
{
background: black
color: #fff;
height: 60px;
width:100%;
padding:10px;
top:0px;
left:0px;
position: fixed;
z-index:1;
}
How can I achieve this?
Upvotes: 0
Views: 40
Reputation: 101
Did you override the body's initial margin values?
Also, to force show a vertical scroll bar, you can do:
overflow-y: scroll;
Upvotes: 1