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

How to increase the line spacing of TWO sentences in my a text box.

On SCMJF.org, the first two sentences that describe the group are too close together. I want the two sentences to be 10-20% further apart.

What HTML will i insert to accomplish this?

Here is the existing HTML, please let me know where to insert the line-spacing HTML:

span style="font-size: x-large;">Β </span> <p style="text-align: center;"><strong><span style="font-size: x-large;"><span style="color: black;"> We areΒ a coalition of Muslim and Jewish Congregations and organizations in Greater Los Angeles committed towards strengthening Muslim-Jewish Ties, through </span></span></strong></p> <code>Β </code>

Thank you!

--Elliot Stiller

2 Answers

Try applying the "line-height" css to the paragraphs you need.

eg:

p{
    line-height:3em;
// you can use px, rem if you want. Your choice.
}

Thank you!