HTML 选择标签文本方向

发布于 2024-09-30 01:51:30 字数 206 浏览 9 评论 0原文

有没有办法在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

比忠 2024-10-07 01:51:30

在 Firefox 中,我认为您还需要设置 bidi-override< /a>:

<select dir="rtl" style="direction: rtl; unicode-bidi: bidi-override;">
    <option style="direction: rtl; unicode-bidi: bidi-override;">test</option>
</select>

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>
差↓一点笑了 2024-10-07 01:51:30

它在 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/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文