CSS :after pseudo-element property
Usage
Inserts content after an element. Not supported in all browsers.
Example
Code:
Displays a closing quote mark image after block quotes:
blockquote:after {
content: url(endquote.gif)
}
Inserts content after an element. Not supported in all browsers.
Displays a closing quote mark image after block quotes:
blockquote:after {
content: url(endquote.gif)
}