how to make text or text box fit in size of iphone
Hi KatieNgoc,
Refer below sample.
HTML
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css" /> <div class="form-group"> <label for="inputdefault"> Name</label> <input type="text" name="name" id="txtName" class="form-control" /> </div>
Demo
Refer below link for more detail about responsive textbox-
https://www.w3schools.com/bootstrap/bootstrap_forms_sizing.asp
Can I use class="form-control" in <ASP:textbox/>
<input type="text" name="name" id="txtName" class="form-control" />
Yes it will work with asp.net control you need to write like below
<asp:TextBox runat="server" CssClass="form-control" />
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.