Paragraph Functionality

This is a paragraph. It is as wide as the container it is in, no margins. There is 1 em of padding below it, to differentiate other paragraphs...

...like this one. This is also a paragraph. All paragraph text is of size 1 em, which is a relative font size based on the user's default text size. In Perfect Layout, paragraph text is the smallest on any given page. You can use things like bold text with the <strong> tag or italic text with the <em> tag.


Relevant HTML

<p>This is paragraph text.</p>

<p><strong>Bold Text</strong></p>
<p><em>Italic Text</em></p>

Relevant CSS

#content p
{
	padding:0 0 1em 0;
	font-size:1em;
}

« Back to Functionality Index