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

0 points
Submitted by Torachan
over 10 years

CSS AN OVERVIEW 21/26

Just wanted to mention that I had problems today with Google Chrome on my Mac OS 10.8.5 using Chrome Version 31.0.1650.48 passing with “Oops, try again! Did you remember to set your ‘a’s text-decoration to none?” Stylesheet Page: a{ color:#cc0000; text-decoration:none; } It finally passed using Safari instead….

Answer 52858bcb548c3539ae001704

1 vote

Permalink

Same issue with Chrome

a { color: #CC0000; text-decoration: none; }

not letting me pass, but works okay in Safari!

points
Submitted by Henry M Ly
over 10 years

Answer 5286b2e380ff33a76e001a57

1 vote

Permalink

I found that this : a { color : #cc0000; text-decoration : none; } didn’t work in Chrome.

But this worked:

a { color : #cc0000; text-decoration:none; }

Taking out the spaces on “text-decoration:none” fixed it.

points
Submitted by Arch4258
over 10 years

2 comments

J Burch over 10 years

This worked for me in Chrome as well. I removed spaces in both value strings. Thanks for the tip!

James Lloyd over 10 years

Same issue and resolution for me

Answer 52a222978c1ccc553a000304

-1 votes

Permalink

Im using chrome right now. This works for me.

a{ color:#cc0000; text-decoration:none; }

points
Submitted by cfutrell1
over 10 years

1 comments

Tjae about 10 years

why u a as the selector?