HTML: The Markup Language

blockquoteblock quotation # T

The blockquote element represents a section that is quoted from another source.

Permitted content #

Permitted attributes #

Descriptions for attributes specific to this element #

cite = URI
A URL referencing the original source for the quoted material.

Tag omission #

A blockquote element must have both a start tag and an end tag.

Permitted parent elements #

any element that can contain flow elements

DOM interface #

interface HTMLQuoteElement : HTMLElement {
           attribute DOMString cite;
};

Typical default display properties #

blockquote {
display: block;
margin: 1em 40px 1em 40px; }