<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
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
Version | Changes |
---|---|
1.0 | Initial release. |