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 Unused CSS Stages Flexbox and Multi-Column Layout Multi-Column Layout: WebKit Only

Amil Boddie-Willis
Amil Boddie-Willis
9,661 Points

I Don't Understand What I'm Doing Wrong Here...

I'm having trouble with the third task of the Flexbox challenge - Could someone please tell me what I'm doing wrong here? - Thank you:

3 Answers

Amil Boddie-Willis
Amil Boddie-Willis
9,661 Points

Never-mind - I figured it out - Thanks...

Chris Shaw
Chris Shaw
26,676 Points

For the benefit of the forum could you post what was going wrong and what you did to fix it so if others have a similar issue they can refer to this situation.

Amil Boddie-Willis
Amil Boddie-Willis
9,661 Points

Oh okay - This is what I, originally, had:

.main { -webkit-column-count: 2; -webkit-column-gap: 2.5em; -webkit-column-rule: dotted red; -webkit-column-width: 1px; }

AND

This is what I figured out, and it worked:

.main { -webkit-column-count: 2; -webkit-column-gap: 2.5em; -webkit-column-rule: dotted red; -webkit-column-rule-width: 1px; }

Chris Shaw
Chris Shaw
26,676 Points

Hi Amilcar,

What code have you tried using? Could you please post it.

https://teamtreehouse.com/forum/posting-code-to-the-forum

Hugo Paz
Hugo Paz
15,622 Points

You were almost there on the first try but instead of css -webkit-column-rule: dotted red; like you had, you shouldve used css -webkit-column-rule: 1px dotted red;