I have an ASP.NET MVC application where I display in a text area a content that is in the database.
@Html.TextArea("Avisos", Model.Avisos, new { @class = "form-control", rows = 50, style = "max-width:none", @readonly = "" })
The display is misaligned like this:
ButifIcopythecontentsofthetextarea,andpasteitintoNotepad,itisok,asexpected:
I have no idea why the difference and how to solve.