I want to automatically add the HTML character » (») to the left of each li element.
»
li
What would be the best practise?
I w
I found the above answer didn't work for me, but the following does:
li:before{ content: "\00BB"; }
This uses the hexadecimal code for » instead.
A nice hexadecimal converter can be found here.
Hope this helps someone :)