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 CSS Basics (2014) Understanding Values and Units Styling the Intro Paragraph

I am stuck , need some help

I can't get past this one problem

index.html
<p class="intro"> You are my least favorite teacher.</p>
style.css
/* Complete the challenge by writing CSS below */
p.class {
Ethan Ede
Ethan Ede
11,575 Points

Hi Tamela, your HTML is solid, but your CSS targets paragraphs with the class of "class" vs. the class of "intro" per the assignment. The paragraph element has already been given the class of "intro" in the HTML, so "p.intro" would be redundant.

Try:

/* Complete the challenge by writing CSS below */
.intro {}

Hope this help. Happy coding!