Weird , i had this working before but stopped out now and doesn't seem to get corrected. I would like to display a down arrow through CSS using Content
but the content does not get encoded(or what ever that process is known as).
Asked
Active
Viewed 8,756 times
1

Community
- 1
- 1

Deeptechtons
- 10,945
- 27
- 96
- 178
2 Answers
12
After looking up this issue, I think you can use a backslash followed by the unicode number in the content string value http://archivist.incutio.com/viewlist/css-discuss/60075. This worked for me
.drop::after{content:"\2193"}

kevinAlbs
- 1,114
- 2
- 11
- 20
-
the Twitter Bootstrap guys seem to use it for down arrow in the menu. How does that work then – Deeptechtons Feb 18 '12 at 06:06
3
You need to use UTF-encoded symbols here:
.drop::after{content:"\2193"}

Community
- 1
- 1

neoascetic
- 2,476
- 25
- 34