Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Amil Boddie-Willis
9,661 PointsI 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
9,661 PointsNever-mind - I figured it out - Thanks...

Chris Shaw
26,662 PointsHi Amilcar,
What code have you tried using? Could you please post it.

Hugo Paz
15,622 PointsYou 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;

Amil Boddie-Willis
9,661 PointsThanks...
Chris Shaw
26,662 PointsChris Shaw
26,662 PointsFor 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
9,661 PointsAmil Boddie-Willis
9,661 PointsOh 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; }