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

django - How can I change user group without delete record -

java - Need to add SOAP security token -

java - EclipseLink JPA Object is not a known entity type -