Is there a way to modify the default scaffolding using CSS so that both the label and the editor appear on the same line, with the label column having a fixed width?
<div class="editor-label">
@Html.LabelFor(model => model.Price)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.Price)
@Html.ValidationMessageFor(model => model.Price)
</div>