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 CSS Flexbox Layout Building a Layout with Flexbox Creating a Sticky Footer with Flexbox

Bibiana Balbuena Barbosa
Bibiana Balbuena Barbosa
14,768 Points

How do I stick the header?

I've tried position:fixed but the content merged with the banner.

4 Answers

Jamie Reardon
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Jamie Reardon
Treehouse Project Reviewer

You'll need to apply some padding to the top of the body rule. The padding value should be the height of your header.

To stick to the top left of the screen:

display: sticky; position: absolute; top: 0; left: 0;

Yep your correct. Should be

position: sticky; top: 0; left: 0;

Jamie Reardon
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Jamie Reardon
Treehouse Project Reviewer

Also to note, the student's method is another valid approach to this, without the need to change the position value to sticky. The value fixed will keep the element fixed to the the top in combination with the position properties:

.element {
  position: fixed;
  top: 0;

  /*  You can optionally add these */
  left: 0;
  right: 0;

  /*  If you don't use left and right */
  width: 100%;
}

/*  To solve the student's problem of the element colliding with other elements on the page */
body {
  padding-top: ;/* add value of the element's (header) height */
}
Bibiana Balbuena Barbosa
Bibiana Balbuena Barbosa
14,768 Points

Thanks guys! I've manage to fix it with your help! :)