css - IE shows mirrored image as before/after content -


only ie shows img.png image mirrored. why? how cope without creating mirrored image ie?

body {     direction: rtl; } li:before {   content: url(/img/img.png); } 

fiddle: http://jsfiddle.net/txza7/2/

well, problem solved: had set direction: ltr ruler li:before in order right.

body {     direction: rtl; } li:before {   content: url(/img/img.png);   direction: ltr; } 

Comments

Popular posts from this blog

How do you change vbulletin's home page to the forums instead of the default (CMS or Activity Stream)? -

c++ - Troubles when compiling phash program -