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

Next, create a new rule that targets .content-traveling. Add the property and value that takes .content-traveling out of

/* Complete the challenge by writing CSS below */

.content-lodging {
  float: right;
}

/* Clearfix ---------------------------------- */

.group:after {
  content: "";
  display: table;
  clear: both;
}

2 Answers

Jonathan Grieve
MOD
Jonathan Grieve
Treehouse Moderator 91,252 Points

Hello there and welcome to Treehouse! :)

It looks like you're just making a start in the forums so I've helped you out with your forum code. The Markdown cheatsheet is great for learning how to post code in the forums so check it out. :-)

As for your question it looks like you're dealing with floats so you want to add a CSS property and value to your code that "floats" the element that has the class of content-traveling. So something like this.

.content-traveling {
   float: left;
}

Hope this helps :)

Not entirely sure what the question is, but try this.

/* Complete the challenge by writing CSS below */
.content-lodging {
  float: right;
}

/* Clearfix ---------------------------------- */

.group:after {
  content: "";
  display: table;
  clear: both;
}