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

0 points
almost 9 years

7/26 [resolved] problem

My code won’t work!!

selector {
    property: green;   
}

Answer 556e535de0a3002476000419

1 vote

Permalink

HI Sk8Kid539,

Instead of the word selector, put the name of the actual element that you want to select.

points
Submitted by Judy
almost 9 years

1 comments

I already finished that one, I’ll remove the post.

Answer 556dd63e9113cbfdb10001e8

0 votes

Permalink

Try something like this…

   <!DOCTYPE html>
    <html>
        <head>
            <link type="text/css" rel="stylesheet" href="stylesheet.css"/>
            <title>Result</title>
        </head>
        <body>
            <p>You're about to style this paragraph with CSS all on your own!</p>
        </body>
    </html>
points
almost 9 years

2 comments

That was exactly what I did. the code I posted was the stylesheet.css

Answer 5578d1bbd3292f57b10000f1

0 votes

Permalink

p{
color:green
}

This is what it looks like the top line is what your selecting to change the color to green (2nd row).

points
Submitted by iiRosie1
almost 9 years