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 trialEunice Erika Am-is
1,081 PointsWhat am i doing wrong?? Please help im stuck.
It tells me to give paragraph class main-pg 4x wide solid red and this is my code but it doesn't work, what do I need to do to fix it? I'm stuck. Thank you for the help.
p .main-pg { border: 4px solid red; }
<!doctype html>
<html>
<head>
<link href="styles.css" rel="stylesheet">
</head>
<body>
<p class="main-pg">My amazing website</p>
</body>
</html>
p .main-pg {
border: 4px solid red;
}
2 Answers
Ryan Lovett
5,100 PointsYou were close! You have an extra space after the p element in your css, so right now you are essentially telling the css to look for the p element, and then look for the .main-pg class inside of it. Instead you want to tell the css to look for the p element, and then the .main-pg class on that element like this:
p.main-pg {
border: 4px solid red;
}
Ryan Lovett
5,100 PointsYou're very welcome and don't be sorry, just keep at it and you'll be a pro in no time!
Eunice Erika Am-is
1,081 PointsEunice Erika Am-is
1,081 PointsSorry, I'm so new to this. Thank you so much! Now i can continue. ♡