只有IE显示镜像的img.png图像。为什么?如何在不专门为IE创建镜像的情况下处理它?</ p>
body {
direction: rtl;
}
li:before {
content: url(/img/img.png);
}
答案 0 :(得分:0)
嗯,问题解决了:我必须设定方向:ltr ruler to li:之前为了使它正确。
body {
direction: rtl;
}
li:before {
content: url(/img/img.png);
direction: ltr;
}