ASP.Net 文本框从右到左

发布于 2024-10-29 18:39:24 字数 96 浏览 4 评论 0原文

在ASP.Net中,光标位于左侧,我想将其放在右侧。

在窗口形式下,属性是从右到左的。

但是ASP.Net中没有

这样如何实现呢?

In ASP.Net, the cursor is on the left side and I would like to put it on the right side.

In Window form, there is right to left in the properties.

But there is none in ASP.Net

How to achieve so?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

默嘫て 2024-11-05 18:39:24

使用css样式:

 { direction:rtl;}

编辑。示例:

<asp:TextBox ID="TextBox1" runat="server" CssClass="ltor"></asp:TextBox>

和CSS:

.ltor {direction:rtl;}

Use css style:

 { direction:rtl;}

edit. example:

<asp:TextBox ID="TextBox1" runat="server" CssClass="ltor"></asp:TextBox>

and css:

.ltor {direction:rtl;}
独守阴晴ぅ圆缺 2024-11-05 18:39:24

您也可以简单地使用特定元素的

属性。 8.2 指定文本和表格的方向:dir< /em> 属性

You could simple use the <dir> attribute for the specific element as well. 8.2 Specifying the direction of text and tables: the dir attribute

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