I am trying to put the top bar to the right of my left menu. I put width: 100%out mine #top_bar, but there were so many. I would like my top panel to occupy only the remaining screen space.
HTML:
<body>
<div id="menu_left"></div>
<div id="top_bar"></div>
</body>
CSS
#menu_left {
background-color: #354052;
position: fixed;
height: 100%;
float: left;
width: 200px;
}
#top_bar {
border-bottom: 1px solid #EFF0F3;
position: absolute;
background-color: white;
left: 200px;
height: 70px;
width: 100%;
}
Result:

source
share