Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Eunice 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. ♡