I have a position:fixed left column at 250px wide with 100% height and I\'m trying to place a fixed, fluid horizontal bar at the top but to the right of the lef
position:fixed
Try this
.left-column { float:left; width:150px; height:100px; background:#090909; color:white; } .top-bar { margin-left:150px; background:yellow; border:2px solid red; }
http://jsfiddle.net/jGP5Y/87/