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

0 points
Submitted by Jason McGloin
over 9 years

4/23 Me or a bug?

My CSS code follows:

p {
 color: #00E5EE;   
}
div p {
 color: #cc0000;   
}

* {
 border: double 5px #3a5cfd;   
}

And I’m getting the error message:

Oops, try again. Did you remember to set the color of the paragraphs outside divs to #00E5EE?

Am I missing something or is this a bug? Any suggestions?

Thanks for any suggestions!

Jason

Update: After logging out for a bit, I came back and there error message changed to the border color being wrong. Which, IS wrong. I corrected this and all errors are gone. So, both me and a bug. Maybe this will at least help someone else.

Answer 557fdf8076b8fe176a0007a7

3 votes

Permalink

p{ color:#00e5ee; } div p{ color:#cc0000; } *{ border:2px dashed #3a5fcd; }

points
Submitted by 5ukrishna
almost 9 years

Answer 540ac8b780ff33bdcb006140

0 votes

Permalink

p{ color:#00E5EE; } div p { color:#CC0000; }

  • { border:2px dotted; border-color:#3A5FCD; }
points
Submitted by Manisha Maheshkar
over 9 years

2 comments

Brooklyn Boughen about 9 years

this is how it is p{ color:#00E5EE; } div p { color:#CC0000; }

{ border:2px dotted; border-color:#3A5FCD; }

  • { border: double 5px #3A5FCD;
    }
ranguss almost 9 years

I got stuck on this exercise as well, turns out I read the color codes incorrectly. The “O” is a number zero, not the letter O.