How can I increase the width of the Html.TextBoxFor control beyond its default in an MVC 5 View

  • Thread starter Thread starter zonkerman
  • Start date Start date
Z

zonkerman

Guest
I am trying to increase the width of an Html.TextBoxFor control in an ASP.NET MVC 5 View page using razor syntax. I am using Visual Studio 2017. I created a css style (textboxfor) to increase the control's width as shown below but it is not working.

Below is the MVC View:


@using rgmsite.Models
@model LoginTestViewModel
@{
ViewBag.Title = "Log in";
}

<style type="text/css">
.textboxfor-width {
width: 700px;
}
</style>

<h2>SimpleTest</h2>
<section id="loginForm">
@using (Html.BeginForm("Login", "Account",
new { ReturnUrl = ViewBag.ReturnUrl }, FormMethod.Post,
new { @class = "form-horizontal", role = "form" }))
{
@Html.AntiForgeryToken()
<div class="form-group">
@Html.TextBoxFor(m => m.Email,
new { @class = "form-control textboxfor-width",
placeholder = "Enter email address to be used as your user name"
})
</div>
}
</section>

Below is the View Model being used:


public class LoginTestViewModel
{
public string Name { get; set; }
public string Email { get; set; }
}

Using a smaller width value such as 40px in the css .textboxfor class works. But there seems to be some limit imposed on the control preventing it from being wider (such as 700px) than the default. What needs to be done to make the TextBoxFor control wider than the default? Thanks in advance.

Continue reading...
 
Back
Top