Please check out this fiddle: http://jsfiddle.net/dppJw/8/
I’ve used a pseudo-element for the body (also tried with html) and the overlay doesn’t go all the way to the end of the document (try scrolling).
How can I have the overlay on the whole document?
Change
position:absolutetoposition:fixed. This will cause the element to stay at the same location, even if the user scrolls.Fiddle: http://jsfiddle.net/dppJw/9/
Note: Your current pseudo-element overlaps the body. Add
z-index: -1if you don’t want the text inside the body to be selectable.