Claire has attended:
Dreamweaver 8 Introduction course
Dreamweaver 8 Intermediate course
Format
How to change the line spacing between paragraphs?
RE: Format - line spacing between paragraphs
Hi Claire,
I would use CSS to do this.
One piece of code you could use would be similar to this:
CSS:
.bigspace {
margin-top: 30px;
}
HTML:
<P class="bigspace">There will be lots of space above</P>
The above shows you can apply the large spacing to paragraphs you choose. To apply the spacing to ALL paragraphs on your page, you can redefine the paragraph tag like this:
CSS:
p {
margin-top: 30px;
}
Of course, adjust the amount of pixels (px) as you see fit. You may also want to use a different measurement such as % or em.
See this forum post also, discusses the different between <BR> and <P> tags:
https://www.stl-training.co.uk/post-1955-linetext-spacing.html
I hope this helps.
Regards, Rich