CSS: An Overview

Hello,

I am on the last exercise of the section and guessing there is a glitch. The directions: On the CSS tab, change your link’s text-decoration to none and its color to #cc0000.
And my code is the following: (Am I missing something?)

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

hello @bdt9123
If your css and html code is correct, Then you need to change the browser.
This exercise have some problem with Chrome.
use Firefox/IE.

(Also you missed the },I think it was just a printing mistake. )

This is my CSS:

h1 {
font-family: Verdana, sans-serif;
color: #576D94;
}

p{
font-family: Garamond, serif;
font-size: 18px;
color: #4a4943;
}

img{
border: 1px solid #4682b4;
}

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

You need to set height and width of image too ?
even you do that you need to switch browser as I said.

I added the img stuff, but will have to check the browser tomorrow.

Thanks for looking at my code.

:thumbsup: , It should work with other browsers! (as said the code should be correct)

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.