I have this code in CSS:
#top_bar {
width: 100%;
padding: 10px;
border: 3px solid gray;
/*margin: 0px;*/
margin-left: auto;
margin-right: auto;
position: fixed;
bottom: 0px;
}
And I run into the problem of having it overflow and I can't see the end of my status bar(because it's off of the page). It doesn't show a scroll bar(I don't want it to) but I want it to exactly hit the end the of the page, not go over it.
It is going over on the right side.