Here is my css:
.editor-field textarea { width : 400; height : 100px; }
Here is the markup from my view:
&l
ASP MVC default project has site.css with max-width:280 for textarea -- remove that and try something like this
ASP MVC
site.css
max-width:280
textarea
@Html.TextAreaFor(model => model.ComicText, new { style = "width: 700px; height:150px;" })