Topic: CSS :after and images?
I'd like to have the :after element have an image as content (a small icon).
Is this possible?
If yes, here's the situation;
I have five lists with H2 headings. Each heading should have it's own icon after them. Right now they have their own class (class="links" etc.) and the CSS has;
h2.classnamehere { content: "insert things"; }
for each H2.
I've tried these;
{ content: "<img />"; }
{ content: "<linkpath to image>"; }
{ content: url("<linkpath to image>"); }
None have worked...
Help would be appreciated.