私は次のHTMLを持っています:
@using (Html.BeginForm("Create", "BicycleSellerListing", FormMethod.Post, new { enctype = "multipart/form-data" })) {
@Html.ValidationSummary(true)
<fieldset style="margin:5px;">
<legend>List a Bicycle for Sale</legend>
<div style="display: inline">
<div style="display: inline">
@Html.LabelFor(model => model.BicycleManfacturer)
</div>
<div style="display: inline">
@Html.DropDownList("ManufacturerList")
</div>
<div style="display: inline">
@Html.LabelFor(model => model.BicycleType)
</div>
<div style="display: inline">
@Html.DropDownList("TypeList")
</div>
<div style="display: inline">
@Html.LabelFor(model => model.BicycleModel)
</div>
<div style="display: inline">
@Html.EditorFor(model => model.BicycleModel)
@Html.ValidationMessageFor(model => model.BicycleModel)
</div>
....
....
ラベルと編集フィールドを並べて表示することができません(インラインを使用)。編集フィールドは常にラベルの下に表示されます。誰かが私が間違っているかもしれないことを知っていますか?