ASP.Net文本框从右到左

时间:2011-04-03 01:42:25

标签: asp.net textbox right-to-left

在ASP.Net中,光标在左侧,我想把它放在右侧。

在窗体中,属性中有从右到左。

但ASP.Net中没有。

如何实现?

2 个答案:

答案 0 :(得分:14)

使用css样式:

 { direction:rtl;}

修改。例如:

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

和css:

.ltor {direction:rtl;}

答案 1 :(得分:0)

您也可以简单地使用特定元素的<dir>属性。 8.2 Specifying the direction of text and tables: the dir attribute