Improve Usability With CSS Pseudo-Selectors
Pseudo-selectors like :before and :after is perfect for adding content before or after classes, such as in the case of visited links or blockquotes. Here are some examples from the article:
blockquote:before {
content: “From the article: “;
}
This will literally put the text “From the article: ” before every single blockquote on your page.
Continue to the original article.


December 7th, 2007 at 4:04 am
thanks a lot