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 trialIsaiah Wojciechowski
3,163 PointsCSS 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
Marcus Parsons
15,719 PointsHi 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
3,163 PointsIsaiah Wojciechowski
3,163 Pointsthank 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
Marcus Parsons
15,719 PointsMarcus Parsons
15,719 PointsExcellent! I'm glad to hear it. Happy Coding, Isaiah! :)