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

Finally, set the top offset of col to 0.

/* Complete the challenge by writing CSS below */

.main-header { position: relative; }

.main-logo, .main-nav { position: absolute; }

.main-logo { top: 25px; left: 25px; }

.main-nav { bottom: 30px; right: 25px; }

.content-row { position: relative; }

.col { position: absolute; width: 30%; display: inline-block; margin-right: -5px; vertical-align: top; }

.primary { left: 0; }

.secondary { right: 0; }

3 Answers

.col{ top: 0 }

after your vertical align declaration you need to have a top declaration as well.

.col {
vertical-align: top;
top: 0;
}```

I think it meant setting the variable "top" to 0

.col { top: 0;}