HTML 选择标签文本方向
有没有办法在 HTML 中创建从右到左的文本方向 select
标签?
以下内容在 IE 中有效,但在 Firefox 中仅对齐文本,而在 Chrome 中则没有任何内容...
<select dir="rtl">
<select style="direction: rtl;">
There is a way to create a right-to-left text-direction select
tag in HTML?
The following works in IE, but in Firefox only align the text and in Chrome nothing...
<select dir="rtl">
<select style="direction: rtl;">
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 Firefox 中,我认为您还需要设置
bidi-override
< /a>:In Firefox I think you'll also need to set
bidi-override
:它在 Chrome 8.x 开发上对我来说工作得很好。我确信这是一个已经修复的错误。
请参阅:http://jsfiddle.net/Qjxv6/
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/