This forum is now read-only. Please use our new forums! Go to forums

0 points
Submitted by Sabrina Wolfheart
over 10 years

2.3 MY CODE IS WRONG

I was just working on lesson 2.3 Many selectors, many properties. My code was right; I checked it with others in the FAQ forums. They seemed to be having the same problems, too.

** edit **

I just figured it out and wanted to help others as well.

Your Code Should Look Like This:

h3 { color: red; } p { font-family: Courier; } span { background-color:yellow; }

If you put in this code (this is the code that passed!) and it won’t work, then try reloading the page and checking again.

Answer 520adabd80ff338341001197

3 votes

Permalink

h3 {

color: red;

}

p{ font-family: Courier; }

span{ background-color: yellow; }

points
over 10 years

1 comments

Ric Andrews over 10 years

thank u so much

Answer 520ebd34548c35347d006ef3

0 votes

Permalink

You’re missing the brackets at the beginning/ending of each property. Like so:

p {    
    font-family:Courier;
}
points
Submitted by Khidr
over 10 years