Indented div with flexible width?

You could use: #MsgBanner { width: auto; margin-left: 200px; }.

This works great. Thank you. – chrishomer Jul 16 '09 at 20:46 You're welcome; glad to have helped = – David Thomas Jul 16 '09 at 21:12.

As far as I know, it's not possible without the calc() function introduced in CSS3. #MsgBanner{ position:relative; background-color:#333; top:60px; height:30px; z-index:14; width:calc(100% - 200px); left:200px; } Above would solve the problem in CSS3, but it's not supported by all browsers.

Definitely works. Hopefully everyone will support css 3 soon! – chrishomer Jul 16 '09 at 20:46.

MsgBanner{ position:relative; background-color:#333; top:60px; height:30px; z-index:14; width:100%; margin-left:200px;} I think all you need to do is set the margin on the left to 200px instead.

Width has to be auto. This still extends beyond the screen. – chrishomer Jul 16 '09 at 20:47.

Padding would add to the width, the end result would be similar to the current implementation. – David Thomas Jul 16 '09 at 20:14.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions