two solutions below: one with pure css, the second with jQuery, allowing any kind of symbol/image to be a separator
pre: Fairly hard to formulate an
Try this:
jQuery:
$('document').ready(function() { $('div').find('a').not(':last-child').after(' | '); });
HTML:
tag 1tag 2tag 3 tag 1tag 2tag 3 tag 1tag 2tag 3
This way, your content separator can be any HTML content.