<blockquote>
marks the text to be indented.
<blockquote> is used for displaying long quotations.
<q>
is used for shorter inline quotations.
<blockquote> |
Yes | Yes | Yes | Yes | Yes |
None.
The <blockquote> tag supports the Global Attributes in HTML.
The <blockquote> tag supports the Event Attributes in HTML.
blockquote { display: block; margin-top: 1em; margin-bottom: 1em; margin-left: 40px; margin-right: 40px; }
A demo showing how to use blockquote tag.
<html>
<body>
<p>The blockquote content is indented.</p>
<blockquote cite="http://www.java2s.com">HTML CSS</blockquote>
</body>
</html>