From http://www.w3schools.com (Copyright Refsnes Data)
The :after pseudo-element inserts some content after the content of an element.
The style below will play a sound after each occurrence of an <h1> element:
h1:after { content: url(beep.wav) } |
Use :after to
insert some content after the content of an element (Does not work in IE)
This example demonstrates how to use the :after pseudo-element to insert an
image after the content of an element.
From http://www.w3schools.com (Copyright Refsnes Data)