IE在内容之前/之后显示镜像图像

时间:2012-06-13 14:18:01

标签: css internet-explorer

只有IE显示镜像的img.png图像。为什么?如何在不专门为IE创建镜像的情况下处理它?<​​/ p>

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

小提琴:http://jsfiddle.net/Txza7/2/

1 个答案:

答案 0 :(得分:0)

嗯,问题解决了:我必须设定方向:ltr ruler to li:之前为了使它正确。

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