Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个阿拉伯语版本的网站。从移动设备访问网站时,菜单将显示为选择框列表。由于阿拉伯语是 rtl,我需要将文本右对齐。我尝试将 CSS 添加到选择属性。但它不适用于 Android chrome。如何为附图中显示的菜单添加 css 样式。
正如 Murtaza Hussain 所说,你可以使用 CSS,
select > option { direction: rtl; /* This makes the text direction go from right to left */ text-align: right; float:right; }