[asp.net] How to set alignment center in TextBox in ASP.NET?

How to set align center for an <asp:TextBox> control in an ASP.NET Web Application?

This question is related to asp.net textbox

The answer is


You can use:

<asp:textbox id="textBox1" style="text-align:center"></asp:textbox>

Or this:

textbox.Style["text-align"] = "center"; //right, left

To center align text

input[type='text'] { text-align:center;}

To center align the textbox in the container that it sits in, apply text-align:center to the container.