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を使用するだけ
input[type=text] { text-align: right; }
デモ
更新しました:
input[type=text] { direction: rtl; unicode-bidi: bidi-override; }