They went in single file, running like hounds on a strong scent, and an eager light was in their eyes. Nearly due west the broad swath of the marching Orcs tramped its ugly slot; the sweet grass of Rohan had been bruised and blackened as they passed.
For longer quotations that form one or more paragraphs, theelement should be used. CSS can then be used to style the quotation. Note that text is not allowed directly inside aelement – it must be contained in an element, usually aelement.
Example:“The following sections discuss issues surrounding the structuring of text. Elements that present text (alignment elements, font elements, style sheets, etc. ) are discussed elsewhere in the specification. For information about characters, please consult the section on the document character set."
http://24ways.org/advent/transitional-vs-strict-markup
This article is about transitional-vs-strict, the difference between transitional and standard xhtml. It mentions the difference between content models and about. In strict, the referenced content must use block level The element contains it, usually,
.
Content model differences
An element type's content model describes what may be contained by an instance of the element type. The most important difference in content models between Transitional and Strict is that blockquote, body, and form elements may only contain block level elements. A few examples:
text and images are not allowed immediately inside the body element, and need to be contained in a block level element like p or div
input elements must not be direct descendants of a form element
text in blockquote elements must be wrapped in a block level element like p or div
So, I think that in the strict type, you must use block-level elements to include the quoted text, but in the non-strict type, it is not necessary. However, it is recommended to do this because the strict type document is more strict and can be considered backward compatible. .