
|
The
re:paragraph
element defines a grouping for a collection of characters. A
re:paragraph
always has space after it to visually separate the two sections of type.
XML Tag
<re:paragraph style='' clas='' >
...
</re:paragraph>
DTD
<!ENTITY % class "class CDATA #IMPLIED">
<!ENTITY % style "style CDATA #IMPLIED">
<!ELEMENT re:paragraph
(
#PCDATA |
re:span |
re:break |
re:tab
)*
>
<!ATTLIST re:paragraph %class; %style; >
Reference Examples030_010 , 030_020 , 030_060 , 030_130 ChildrenAttributesclass, style Style PropertiesclassThe class attribute specifies a named_reference to the style sheet that should be applied to the element. Only one style can be called and applied to one element. styleA style attribute specifies a collection of properties for inline styling. This can be used in combination with a class attribute so that a style-sheet can be called but some of the properties (of the style-sheet) are over-ridden. |