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

HTML Introduction to HTML and CSS (2016) Make It Beautiful With CSS Test: Styling by Element and Class

What 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; }

index.html
<!doctype html>
<html>
  <head>
    <link href="styles.css" rel="stylesheet">
  </head>
  <body>

    <p class="main-pg">My amazing website</p>

  </body>
</html>
styles.css
p .main-pg {
  border: 4px solid red;
}

2 Answers

Ryan Lovett
Ryan Lovett
5,100 Points

You 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;
}

Sorry, I'm so new to this. Thank you so much! Now i can continue. ♡

Ryan Lovett
Ryan Lovett
5,100 Points

You're very welcome and don't be sorry, just keep at it and you'll be a pro in no time!