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 Layout Techniques Positioning Schemes Positioning Schemes Challenge

Corey Standish
Corey Standish
14,835 Points

primary column's left offset to 0

Next, set the primary column's left offset to 0, and the secondary column's right offset to 0.

2 Answers

So the challenge is similar to the questions before it, so take the classes for primary and secondary and set the respective left and right offset to zero. See this example code

.primary {
    left: 0;
}

.secondary {
    right: 0;
}
Martin Å vec
Martin Å vec
8,208 Points

I just wonder why

.primary col { left: 0; }

.secondary col { right: 0; }

Thank you for explanation