up vote 1 down vote favorite
1
share [g+] share [fb]

I just wonder if it is possible to only use CSS but not javascript to style a DIV that will cover up the whole content area exactly? (note: whole content, not just the viewport). It seems not possible because the <body> element has some margin, and it seems like there is no easy way to style the div to include that margin width and height of the body element. But in fact is it possible?

Update: sorry, a requirement is that we can't set the margin of <body> to 0... (update2: say, if we need to make it into a library and can't ask all people who use it to set the body to have margin 0)

link|improve this question

69% accept rate
I would have thought that you could set the margin, padding, and border of the <body> to zero. – ChrisW May 25 '09 at 21:35
3  
Can we know why you can't set body's margin to 0? – voyager May 26 '09 at 0:12
2  
This is an absurd requirement - you're either allowed to develop or you're not, there's no justification for "this subset of this technology is off-limits". There are still ways (see Lazlow's answer) but I'd be seriously unhappy about having my hands tied arbitrarily like this. – annakata May 27 '09 at 16:32
1  
the reason is if we make this a library... we can't ask all people who use this package to set the body to have margin 0. – 動靜能量 May 27 '09 at 19:00
feedback

10 Answers

up vote 4 down vote accepted

If the <body> margin is set, then couldn't you use negative margins on the <div> to override the <body> margins? I understand <body> margins can vary between browsers. If the <body> has a margin of 10px, then style your div like so:

div#mydiv {
margin: -10px;
}

You'd use the same principle to override padding (if applicable).

link|improve this answer
This will work but I still think the requirement is absurd. – annakata May 27 '09 at 16:31
feedback

Sure, I think.

Reset default margins:

* { margin: 0; padding: 0; }

then for

<div id="shader"></div>

do:

#shader {position: absolute; width: 100%; height: 100%; min-height: 100%; top: 0; left: 0;}
link|improve this answer
1  
sorry, please read the update... a requirement is that we can't set the margin of <body> to 0... – 動靜能量 May 25 '09 at 21:44
feedback

This is probably a solution, but it won't work in IE...

div.cover { position: fixed; top: 0px; left: 0px; right: 0px; bottom: 0px; }
link|improve this answer
tagsoup.com/cookbook/css/fixed is a possible fix for IE. Miff's answer is the right way. – Adam A May 25 '09 at 22:05
this is for the viewport... not the whole content area... and it breaks on IE 6 since fixed is not supported there. – 動靜能量 May 25 '09 at 22:09
2  
That's true, but here's my opinion: You wouldn't be able to see any part of the content area uncovered if you cover the viewport. It's technically different, yes, but other than scrolling or not it's all the same to the user. As far as IE6, there's the fix above. It's not perfect, but then again none of these answers work in lynx anyway. =) Also, if you don't want to change the body margins, you'd HAVE to set negative margins or negative left/top on the div to cover the whole content area. And that's really inflexible and ugly. I'm curious as to why you can't change the body margins. – Adam A May 25 '09 at 22:33
feedback

Logically, this is impossible. Your DIV has to go inside the body, not outside.

Or to put it another way, you asked for the whole "content area" to be covered, but that's not actually what you want, you want the entire body to be covered.

Lazlow has the best suggestion. Maybe set the negative margins/padding to something large so you can be sure it's bigger than the browser default, then have an inner div with the same margin/padding values only positive?

link|improve this answer
feedback

Yes. you just set the padding and margin of the body tag to 0, then you set the padding and margin of the div tag to zero.

link|improve this answer
feedback

what about this?

<div style="position:absolute;left:0px;top:0px;width:100%;height:100%;">...
link|improve this answer
1  
this is for the viewport... not the whole content area – 動靜能量 May 25 '09 at 22:08
feedback

Liked Ambrose's answer. The body is ultimate container for your HTML. I have not seen any margins in the body with Mozilla, Chrome, IE, or Opera -- current versions. To prove it: style
body {background-color: yellow;} /*and take a look. */

in any case, it's always a good practice to normalize the browsers setting for margin, padding, etc to zero! like Dmitri Farkov above

link|improve this answer
i think there is actually a margin for the body... try html {background:orange} body {background:yellow} – 動靜能量 May 26 '09 at 8:57
feedback

I think there's no way to make the div "float" over your browser, if would so, then the technology could overcome your screen, something like body style="margin: -40px" - should this bleed on your desktop?

And by the way, html styled is abnormal, what would you do next? style , ?? In any case they ARE there so you could set styles on all of them but I don't think it would be much clever.

I don't know if this could help:

<div style="margin:-100%">

But I doubt this can overcome the browser window...

link|improve this answer
feedback

I think MiffTheFox's approach is the best, because its solution covers the situation where other divs has absolute positioning. Remember that absolute positioning elements go off the flow, and if any element is positioned for example at top:9000px, body height will not be >9000px.

link|improve this answer
feedback
<style type="text/css">
    #superdiv{ position:fixed; top:0; left:0; width:100%; height:100%; }
</style>

<div id="superdiv">
    Put some content here.
</div>
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.