<body>
    <article id="one">...</article>
    <article id="two">...</article>
    <article id="three">...</article>
    ...
</body>  

How can I make each of article fit to the entire screen resolution? For example, the initial page is the content of article#one, and when you scroll down, the next page is article#two.

I really need this. Thanks.

link|improve this question

67% accept rate
you are using article outside of section? I have always wandered, the sections are sections of text or sections of the website itself? – SparK Dec 14 '11 at 19:08
feedback

1 Answer

up vote 1 down vote accepted

It's very simple:

article { height:100%; }

Also, make sure html and body have height:100%; as well.

Demo

link|improve this answer
Thanks a lot. I forgot to make html's height 100% – Jensen Dec 14 '11 at 19:56
feedback

Your Answer

 
or
required, but never shown

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