我使用此代码
<style>
Select{
text-align : right;
direction : right;
}
</style>
<Select size="5" >
<option>سلام....</option>
...
..
</Select>
在所有浏览器中,除 chrome 之外的所有元素都分配为右,在 chrome 元素中分配为左
即使我写了
<Select dir ="rtl" >
但不工作
之后我用这个
<option dir ="rtl">سلام....</option>
但不再工作
这是我的结果图片
( http://chromefalt.somee.com/result.html ) ( http://jsfiddle.net/korooshbaghbani/3Jgs5 )
我希望 chrome 像另一个浏览器一样从右边开始
我在做什么 ??