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 Float Layout Float Layout Challenge

JW V
PLUS
JW V
Courses Plus Student 11,429 Points

Floating Columns and Images Challenge task 3?

I cannot pass this and have no idea what I'm missing. Any help is very appreciated.

<div class="col"> <h3>What's Up</h3> <p>This is going to be fun</p> </div>

4 Answers

Roberto Alicata
PLUS
Roberto Alicata
Courses Plus Student 39,959 Points

Did you mean this challenge? "Challenge task 3 of 4 Let's make the extra div on line 28 a new column by giving it the col class. Then, create your own content inside the column using an h3 heading followed by a p." I passed it whit this code on line 28

<div class="extra col">
      <h3>My Header</h3>
      <p>This is my content</p>
</div>
JW V
PLUS
JW V
Courses Plus Student 11,429 Points

That worked. It is very un specific with renaming the class. Just says to give it the col class. This worked, Thank you Roberto.

Richard Mellor
Richard Mellor
13,770 Points

Yeh this question is terriblly worded, I had the same problem until I realised it was extra col, not just col.