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

Be sure to set the margin for gallery list items to 2.5%.

Why i'm getting that bummer warning if my code looks like this:

#gallery li {
  float: left;
  width: 45%;
  margin: 2,5%;
  color: #fff;
  background-color: #000;
}

I went ahead and edited you code take a look at markdown cheatsheet it's also located below every post. Also if that does not help here a Simple guide as to how to post your code on the forum.

How to Post Code to the Treehouse Forum

3 Answers

You have typed a comma instead of a period were it says 2.5%

tnx! i wouldn't noticed this by myself

Not a problem most of the time the errors are typos.

tnx!