I want to disable the resizable property of a textarea.
textarea
Currently, I can resize a textarea by clicking on the bottom right corner of the
With @style, you can give it a custom size and disable the resize feature (resize: none;).
@style
(resize: none;)
@Html.TextAreaFor(model => model.YourProperty, new { @style = "width: 90%; height: 180px; resize: none;" })