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

