Skip to Main Content

Quote

A quotation offset from the text around it.

Basic Usage

You can style Quotes (typically blockquote elements) by giving them the cd-quote class.

And he said, don't quote me on this, but...
HTMLCopied!
<blockquote class="cd-quote">
  And he said, <q>don't quote me on this, but...</q>
</blockquote>

Citation

To add a citation to a Quote, add a footer element that optionally contains a cite element.

Words can be like X-rays, if you use them properly—they’ll go through anything. You read and you’re pierced.

—Aldous Huxley, Brave New World
HTMLCopied!
<blockquote
  class="cd-quote"
  cite="https://www.huxley.net/bnw/four.html"
>
  <p>
    Words can be like X-rays, if you use them
    properly—they’ll go through anything. You read and
    you’re pierced.
  </p>
  <footer>
    —Aldous Huxley, <cite>Brave New World</cite>
  </footer>
</blockquote>