This tip came from something which I learnt from Blog-Fu , a simple and nice way of formating blockquotes.
The CSS is as follows:
blockquote[cite]:after {
content: “Quote from: ” attr(cite);
display: block;
border-top: 1px solid #999;
color: #999;
margin: 1em 0 0;
padding: .5em 0 0;
font-size: .8em;
font-weight: bold;
}
blockquote {
background: #eee;
margin: 20px;
padding: .5em;
margin-top: 0px;
border: 1px dotted #999;
}
read more about how the formatting is done at blog-fu
