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

HTML How to Make a Website CSS: Cascading Style Sheets CSS Facts

What should come after a CSS property?

It is a quiz question..

2 Answers

Value should come after css property.

Take a look at this example. let's say you want to change the background of your body(which is selector), the background(is the property) and color you assign to it is the value- in this case red( which is -value)

body{ background: red;

}