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 trialCorey Standish
14,835 Pointsprimary 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
Adam Sackfield
Courses Plus Student 19,663 PointsSo 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
8,208 PointsI just wonder why
.primary col { left: 0; }
.secondary col { right: 0; }
Thank you for explanation