Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ASP.Net textbox right to left

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?

like image 520
william Avatar asked Apr 03 '11 01:04

william


1 Answers

Use css style:

 { direction:rtl;}

edit. example:

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

and css:

.ltor {direction:rtl;}
like image 129
Damb Avatar answered Oct 14 '22 22:10

Damb