htmlcss

The HTML <blockquote></blockquote> element indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by using indents. The source of the quotation may also be stated using the HTML <cite> element.


Attributes


To apply this in HTML, use:

<blockquote>
The HTML & CSS Wiki is a large database containing lots of information.
</blockquote>

That produces:

The HTML & CSS Wiki is a large database containing lots of information.

Rendering

The <blockquote> element is rendered as a block with a margin on all four sides.

Typical CSS representation

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

Notable exceptions

Firefox:

HTML5 Categories

See Also