I have the following line in my view:
<%= Html.TextBoxFor(m => m.Description)%>
This worked for me for the one-offs, pretty verbose though:
<%: Html.TextBoxFor(m => m.Description, new { style="width:50px;" })%>