I\'m trying to apply a Style to the Editor for an element, but I can\'t make it work; what am I doing wrong?
@Html.EditorFor(model => model.ClienteNuevo)
You can create own css class and appendd it to your editor:
@Html.EditorFor(model => model.Name, new { htmlAttributes = new { @class = "custom-editor" } }) @Html.ValidationMessageFor(model => model.Name, "", new { @class = "text-danger" })