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 How to Make a Website Adding Pages to a Website Style New Pages

Jeff Martinez
Jeff Martinez
1,826 Points

My "About" paragraph didn't seem to change much when adding: h3 { margin: 0 0 lem 0; }

My "About" paragraph didn't seem to change much when adding. The spacing seemed the same as before:

h3 { margin: 0 0 lem 0; }

3 Answers

Hugo Paz
Hugo Paz
15,622 Points

Hi Jeff,

It seems you wrote a capital i instead of a 1. Could you try it like this:

h3 { margin: 0 0 1em 0; }
Laura Cressman
Laura Cressman
12,548 Points

I recommend playing around with the styling. Try adding more margin by replacing the zeros with different numbers so you can see the impact that this has. Unless you think the issue is the style isn't being applied properly? A quick test is to set the background color to green or something so you can see the element. In this case, I recommend adding the line background-color: green; to your code to see what's going on. Smile more, Laura ;)

h3 {
     margin: 0 0 1em 0;
     background-color: green;
}
Jeff Martinez
Jeff Martinez
1,826 Points

Still didn't do anything. I use Mozilla. Maybe that is the reason?