-
Notifications
You must be signed in to change notification settings - Fork 1
Paragraphs
cibboy edited this page Sep 3, 2018
·
3 revisions
Together with headers, paragraphs are the core of a web page styled with Paper. Like in printed books, paragraphs are spaced apart just enough to give the best legibility.
There is an alternate style for paragraph rendering, which comes through the use of specialization class indent, which prints paragraphs less spaced apart, with the first line slightly indented. This class must be used on all those paragraphs which require such style; unlike justification, indentation is not inherited.
Normal paragraphs do not need any kind of treatment.
<p>This is the first paragraph</p>
<p>This is the second paragraph</p>Indented paragraphs require the indent class.
<p>This is the first paragraph</p>
<p class="indent">This is the second paragraph, and it is indented</p>