Here is my css:
.editor-field textarea { width : 400; height : 100px; }
Here is the markup from my view:
&l
try to use TextAreaFor helper method and set cols and rows html property
TextAreaFor
cols
rows
Sample
@Html.TextAreaFor(model=>model.MyMultilineText, new {rows="6", cols="10"})
I Hope this help. Regards.