:after Description:
The :after pseudo-element allows you to insert generated content after the element defined.
:after Web Browser Support:
:after in CSS Versions:
:after Examples:
Put quotes after all blockquote entities
<style>
blockquote:after { content : open-quote; }
</style>
:after Special Notes:
- Internet Explorer does not support this pseudo-element or generated content.

