I need to show image corresponding to each item beside it, using CSS content
property & :before
pseudo selector.
How do I do something like below in a valid working way:
content: url("http://example.com/images/" + attr(title));
to show an image at URL
"http://example.com/images/523452345"
The above does not work!