CSS Pseudo-elements - W3Schools Online Web Tutorials
CSS - The ::before Pseudo-element The ::before pseudo-element can be used to insert some content before the content of an element. The following example inserts an image before each element: Example h1::before { content: url(smiley.gif);} Try it » ...
www.w3schools.com |