Bert,
Cite can be used as an 'element' or as an 'attribute'.
The cite element contains a citation or a reference to other sources. It is
an inline element:
<p>As <cite>Harry Potter</cite> said, <q lang="en-us">Look out!</q></p>
The cite attribute can be used with <blockquote>, <q>, <del> and <ins>
elements:
<p>Some text and <ins cite="url">additional text</ins> then more text.</p>
So, in regard to blockquotes, cite could be used in three main ways:
1. As an attribute for the blockquote:
<blockquote cite="url">
<p>content...</p>
</blockquote>
2. As an element to add meaning to the blockquote:
<blockquote>
<p>content...</p>
<cite>Harry Potter</cite>
</blockquote>
3. As an attribute that has been turned into a visible cite using attribute
selectors. This is not widely supported but possibly the most semantically
correct. More on this at Tony Stephens Blog-Fu:
http://www.simiandesign.com/blog-fu/2003/11/001820.cfm#001820
The method you choose will depends on whether you need the citation visible
or not. In your case, adding a visible citation would definitely add
credibility to testimonials in my opinion, so I'd probably go for option 2.
HTH
Russ
> I've got no problem with blockquote, but my question is the use of cite - I
> know it is an inline element. Is there an equivalent block level element, or
> is there no need to use cite here?
*****************************************************
The discussion list for http://webstandardsgroup.org/
See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list & getting help
*****************************************************