> It said that 'cite' is an attribute for the source of a blockquote, > which makes sense. However, when I tried to use it, I saw no > difference, not something when I hovered the blockquote or right > clicked.
It is also possible to display the cite attribute using attribute selectors, (except in the wondrous IE). A quick example: HTML ----------------- <blockquote cite="http://www.site.com"> <p>Lorem ipsum dolor </p> </blockquote> CSS ------------ blockquote[cite]:after { content: "Source: " attr(cite); display: block; } The result should show the following at the end of the blockquote contents (in attribute selector supporting browsers): "Source: http://www.site.com" Thanks Russ ****************************************************** The discussion list for http://webstandardsgroup.org/ See http://webstandardsgroup.org/mail/guidelines.cfm for some hints on posting to the list & getting help ******************************************************