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

JavaScript Express Basics Serving Static Files in Express Adding Static Assets to the App

Style.css file of the solution is buggy (258, padding left, pointation error)

It looks like that the style.css sheet has a small bug included.

After importing the document to my code in order to get the whole css stuff up and running I saw that in line 258 (.card-flip-wrap class) the padding-left attribute is buggy.

The reason of the bug is the wrong punctation after the 500px. The downloaded file has a ":" instead of ";" after the ending of the statement.

I hope you are not running into bugs because of this!

1 Answer

WRONG

.card-flip-wrap {
  position: absolute;
  bottom: 10px;
  left: 20px;
  padding-left: 500px:
}

RIGHT

.card-flip-wrap {
  position: absolute;
  bottom: 10px;
  left: 20px;
  padding-left: 500px;
}