Skip to main content

<blockquote> : Block Quote

The <blockquote> element creates a container for text to be contained in. This element uses a faint background and a configurable left border to make the text stand out.

Attributes

color

The color of the left border. Defaults to white.

Examples

The following will show a block quote with a red left border and 3 lines of text.

<blockquote color="red">
<p>Line 1</p>
<p>Line 2</p>
<p>Line 3</p>
</blockquote>

Restrictions

The <blockquote> element can only contain text elements.

Version History

VersionChanges
1.0Initial release.