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 trialkaran gadhave
370 PointsWhat should come after a CSS property?
It is a quiz question..
2 Answers
Christopher Collins
Front End Web Development Techdegree Student 6,343 PointsA value, as the below example shows, each property has a value assigned.
.class { border: 3px solid red; width: 100px; height: 100px; }
Motuma Kaba
11,960 PointsValue 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;
}