I am trying to create a div that starts 200px from the left and extends to the edge of the page on the right but not beyond. Right now with 100% as the width it extends 200px beyond the page to the right. Without the width, it still extends beyond by 200px.
Any idea how to make this work?
#MsgBanner{
position:relative;
background-color:#333;
top:60px;
height:30px;
z-index:14;
width:100%;
left:200px;
}