如何右对齐文本框?
在 php 中,当我们在文本区域中输入一个单词时,它会显示在文本区域的左上角。 我希望当用户输入单词时文本显示在右上角。 我怎样才能实现这个目标?
In php when we type a word in a textarea it is shown at the top-left of the textarea.
I want the text to appear at the top-right when the user beings typing a word.
How can I achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
设置
text-align: right
怎么样?示例。
How about setting
text-align: right
?Example.
要么将
text-align:right;
设置为 lonesomeday 所写,要么将direction
设置为rtl
。 查看此示例。Either set
text-align:right;
as lonesomeday wrote or setdirection
tortl
. See this example.