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 How to Make a Website Responsive Web Design and Testing Website Testing

Isaiah Wojciechowski
Isaiah Wojciechowski
3,163 Points

CSS Validator Error on line 39

this is the error that pops up line: 39 h1 Value Error : margin , is an incorrect operator : 15px,0

h1 { 
  font-family: 'Changa One', sans-serif;
  margin: 15px, 0;
  font-size: 1.75em;
  font-weight: normal;
  line-height: 0.8em;
}

1 Answer

Hi Isaiah,

There shouldn't be a comma in between those values in the margin rule, only a space:

h1 { 
  font-family: 'Changa One', sans-serif;
  /* changed , to space */
  margin: 15px 0;
  font-size: 1.75em;
  font-weight: normal;
  line-height: 0.8em;
}
Isaiah Wojciechowski
Isaiah Wojciechowski
3,163 Points

thank you!!

i knew it was something small that i should notice right away but i just couldn't find it

my code is all validated thanks to you Marcus

Excellent! I'm glad to hear it. Happy Coding, Isaiah! :)