How to separate paragraphs?

How to separate paragraphs?

am 27.06.2007 07:30:44 von Nikolay Kurtov

Hello.

I want to make a layout for my blog, so, the content of the page is
inside one tag,

...


I want to have little spaces between lines inside a paragraph and a
BIG space between different paragraphs.( Paragraph is just some
sentances connected semantically, not a HTML tag

). But I don't
know how!!!

Please, help me!!!

Re: How to separate paragraphs?

am 27.06.2007 08:44:33 von rf

"Nikolay Kurtov" wrote in message
news:1182922244.939749.98740@k29g2000hsd.googlegroups.com...
> Hello.
>
> I want to make a layout for my blog, so, the content of the page is
> inside one tag,

...


> I want to have little spaces between lines inside a paragraph and a

p {line-height: 2em;} ?

> BIG space between different paragraphs.( Paragraph is just some
> sentances connected semantically, not a HTML tag

). But I don't
> know how!!!

p {margin-bottom: 14em;} ?

--
Richard.

Re: How to separate paragraphs?

am 27.06.2007 11:58:52 von Andy Dingley

On 27 Jun, 06:30, Nikolay Kurtov wrote:
> I want to have little spaces between lines inside a paragraph and a
> BIG space between different paragraphs.( Paragraph is just some
> sentances connected semantically, not a HTML tag

).

HTML doesn't have a "paragraph separator". Instead it uses "paragraph
containers" (

...

). It's important to remember the
difference, because you can't really change this; working "against
HTML" is harder than working with it.

You should use the

tags to identify the start of paragraphs in
HTML. That's how it's meant to work, that's how it works best and most
easily. If you have "sentences connected semantically" then that's a
paragraph in HTML and you should mark it up as one. If you _insist_ on
not using

, then use

(you can nest
s)

If you want to understand how margins work in CSS, particularly
"collapsing vertical margins", then read this: http://brainjar.com/css/positioning/

As to your spacing issues, then just the CSS defaults on correct HTML
markup ought to be a good start for you.

If you want to vary line height within a paragraph, use
p { line-height: 1.2; }

Note that there are no dimensions on the 1.2 value! Don't use ems
here. 1.2 is the "typical" default, so make it larger or smaller
according to what you want.

If you want more spacing between paragraphs, set the bottom margin to
be bigger
p { margin-bottom: 2.5em; }
"Collapsing margins" means that you only need to set one margin,
usually the bottom is best. Use em units here.