Quotes on websites
Following a comment from Andrew at Rickmann Designs this post has been updated to remove the non-semantic div. Hurray!
Particularly for a service-based businesses quotes are a great way of showing that you are a trusted and well regarded business. XHTML allows you to mark up a quotes with two tags - the blockquote or quote. But the default styling for these elements is not very inspiring. Thankfully with CSS you can do pretty much anything you want with quotes. This article will explain how to get to the following:

Using the right semantics
XHTML offers two elements for quotes in the blockquote and quote. Quote is used for inline quotes:
“I like beer” said George.
Blockquote is used for larger quotes:
“Most modern calendars mar the sweet simplicity of our lives by reminding us that each day that passes is the anniversary of some perfectly uninteresting event.”
There is also the cite element which allows us to assign a citation to the quote.
Markup the example
Let’s start with some solid markup. Then if we change our mind we can change the styling.
1 2 3 4 | |
Sprinkle in some CSS
Then we add the some CSS:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | |
This applies the quotation marks to the top left and bottom right of the quote. The citation is floated right. And that’s it! I combine this with a PHP script that produces random quotes.
View the example and download the source code here.
This code has been tested and works in the following browsers
- Win IE5-7
- Win Firefox 1.0-2
- Win Opera 7-9
- Win Netscape 6-8
- Mac Safari 2
- Mac Firefox 1.0-2
- Mac Camino 1
- Mac Opera 9