Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

CSS

Full page section?

I want to make a website that when you arrive on it you have a section that takes up all the screen similar to the website FullPage.js

After you scroll past the section however it becomes a "normal" page that scrollable.

Any help is appreciated and if you know of any tutorials please link them below!

1 Answer

Hi Michael,

If I'm understanding you properly, you should be able to wrap the section you want to span the full width of the screen in a div with whatever class you'd like. Then you can use that class to display that section the full width of the browser using css. Something like this:

<div class="fullscreen">
   <h1>This is a full-screen div!</h1>
</div>
.fullscreen {
   width: 100%;
}