Hi everyone i want to change the height and width of this editor field i tried changing the editor field class but it did not resize the textbox itself rather the space around the textbox, i even tried adding "new{}" but did not work please help thank you for your time
<div class="editor-field">
@Html.EditorFor(model => model.HomeAddress)<br>
@Html.ValidationMessageFor(model => model.HomeAddress)
</div>
> legend {
font-size: 1.2em;
font-weight: bold;
}
textarea {
min-height: 75px;
}
.editor-label {
margin: 1em 0 0 0;
}
.editor-field {
margin: 0.5em 0 0 0;
height:10000px;
width:10000px;
}