Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

CSS

Google chrome does not show css colors.

Someone help pls. May be my google chrome is faulty or something It cant display colors and when I copy the code to safari it works. Thanks in advance.

Hauwa.

2 Answers

What's the code look like?

This is included in the main.css file:

a{

color:#6ab47b; 
}

header{

  background:#6ab47b; 
  border-color:#599a68; 

}


h1, h2{

color:#fff; 

}

nav{

background:#599a68; 

}

nav a, nav a:visited{

color: #fff;  
}

Hauwa, I reformatted your code with markdown to make it more readable. Here is how you do it:

```language name in lowercase
//code here