I need a purple line along the top of the site. Instead of using an image I'm using the border-top property on the body. This works in full view but when I resize the browser window the purple line appears only in the viewport, when I scroll to the right I get a white space. Here's the fiddle so you can see what I mean. I've tried width: 100% on both the body and the container, but to no avail. Can someone suggest ways to accomplish what I need?

Thank you.

link|improve this question

feedback

5 Answers

up vote 1 down vote accepted

If you know your documents width then you can specify a min-width.

body { min-width: 960px; }
link|improve this answer
Most suggestions worked in my case. I choose this one because it 'played' best with the rest of my styles :) – brunn Dec 5 '11 at 22:08
feedback

Not sure if this is the best way to accomplish it, but you can add position: absolute; to the body. This may have some undesired side effects.

link|improve this answer
Ahh, I see it now. Nice. +1 – mrtsherman Dec 5 '11 at 20:13
feedback

Try the body border hack :)

http://css-tricks.com/558-body-border/

Designed for fixed position but should work for you as well.

link|improve this answer
feedback

Adding display: inline-block; to both body and container also worked. See http://jsfiddle.net/K5zVq/16/.

link|improve this answer
feedback

A secondary answer, related to skoh-fley's though maybe with less consequences, is to add float: left to the body: http://jsfiddle.net/K5zVq/20/. Though I think I would lean toward my first answer posted here (though you know your situation better than I).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.