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
Post a Comment