HTML select tag text direction
There is a way to create a right-to-left text-direction select
tag in HTML?
The开发者_Go百科 following works in IE, but in Firefox only align the text and in Chrome nothing...
<select dir="rtl">
<select style="direction: rtl;">
In Firefox I think you'll also need to set bidi-override
:
<select dir="rtl" style="direction: rtl; unicode-bidi: bidi-override;">
<option style="direction: rtl; unicode-bidi: bidi-override;">test</option>
</select>
It works fine for me on Chrome 8.x dev. I'm sure it is a bug that's already fixed.
See: http://jsfiddle.net/Qjxv6/
精彩评论