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

How do I get my three columns to align to the top of the container? I tried vertical-align but it didn't seem to work?

I tried inline-blocking the elements instead but wasn't there some way from a previous video? I'm getting the same problem with my nav header.

2 Answers

Steven Parker
Steven Parker
243,656 Points

Alignment methods vary with element types.

:point_right: vertical-align only works with inline-level and table-cell elements.

If your columns are contained in block elements, they can be aligned with other methods like position, float, margin, flexbox, etc.

You could try using the float property.

.header { float: left; } and then add padding and margins for space. If this does not help, pop your code up to make it clearer what the problem is.