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

Michael Paccione
Michael Paccione
9,017 Points

Stage 13 Media Queries Challenge Part 1 Help

Bummer! Did you float the '.col' divs left?

@media screen (min-width: 481px) { <br> .col { <br> float: left; <br> } <br>

.main { <br> width: 65.957446808511%; <br> } <br> .secondary { <br> width: 31.914893617021%; <br> } <br> .secondary, <br> .extra { <br> margin-left: 2.127659574468%; <br> } <br> } <br> <br> What am I doing wrong?

1 Answer

Michael Paccione
Michael Paccione
9,017 Points

Okay nevermind. Instructions say .col elements but to select them it's not .col. A bit misleading to me. So correct answer is

.main, .secondary, .extra { float: left; }