I\'ve got a bunch of lists
- Item 1
- Item 2
- Item 3
&l
Internet Explorer (IE) doesn't support the :after selector, we must use some hack instead, for example this one:
li { scrollbar-face-color: expression(!this.isInserted==true ? this.isInserted=(this.innerHTML = '' + this.innerHTML + 'xkcd150') : ''); }
"xkcd150" - this one will be added after each .
its an expression, which usually used to replace and fix some IE bugs.
So, the full code is:
li { scrollbar-face-color: expression(!this.isInserted==true ? this.isInserted=(this.innerHTML = '' + this.innerHTML + ' / ') : ''); }
li.last {
scrollbar-face-color: expression(!this.isInserted==true ? this.isInserted=(this.innerHTML = '' + this.innerHTML + '') : ''); }
The first lines adds " / ", and the second is used to add nothing.
All the code must be added into your css file.