Jump to content

How can I put a slightly increased space between just two paragraphs?


Bert Coules

Recommended Posts

Is it possible to insert an extra space between two particular paragraphs equivalent to one and a half line heights? Like this (though this isn't to scale):

 

Paragraph one

(1 blank line)

Paragraph two

 

(1.5 blank lines)

 

Paragraph three

(1 blank line)

Paragraph four

 

I know about setting the paragraph spacing globally, but I need it to happen just once. I tried setting an increased height for a single paragraph, but that affects the spacing both before and after it.

 

Edited to add:

 

Someone elsewhere kindly advised me to apply a style to paragraph three:

<p style="margin-top: 1.5em;">

Which works a treat. It does feel slightly odd to be putting a formatting command in a php file rather the stylesheet, but I suppose for a single instance it really is far more sensible.

Edited by Bert Coules
Link to comment
Share on other sites

Margin is the best way to put space between paragraphs. If you don't want to use a style attribute you can give a class name to it instead and put a class in your stylesheet with the margin on it.

Link to comment
Share on other sites

Pure HTML

 

<p style="margin-bottom:1em">Paragraph 1</p>

 

<p style="margin-bottom:1.5em">Paragraph 2</p>

 

<p style="margin-bottom:2em">Paragraph 3</p>

 

 

OR

 

HTML with CSS

 

 

.paramargin1 {

margin-bottom:1em;

}

 

.paramargin2 {

margin-bottom:1.5em;

}

 

 

<p class="paramargin1">Paragraph 1</p>

 

<p class="paramargin2>Paragraph 2</p>

 

<p class="paramargin1">Paragraph 3</p>

Link to comment
Share on other sites

You can also use

 

 

p {

margin-bottom:1em;

}

 

 

p:nth-child(2)

{

margin-bottom:1.5em;

}

 

 

<p>Paragraph 1</p>

 

<p>Paragraph 2</p>

 

<p>Paragraph 3</p>

 

 

PS - Check :nth-child browser compatibility

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...