似たような他の質問を読みましたが、私の問題はより基本的です。私はむしろブートストラップの新機能ですが、電話、タブレット、その他のデバイスで開く必要があるシンプルなフォームでこれが動作するかどうかをテストしています。同じ行にブートストラップ行がありません
テキストボックスを説明するテキストと同じ行にテキストボックスを表示しようとしています。代わりに、テキストボックスがテキストの下にあります。ここで
は何が起こっているかである:ここでは
は、上記のCSHTMLページです:
@model MvcBootstrap.Models.HomeModels.VisitingCustomer
@{
ViewBag.Title = "Home Page";
}
<div class="">
<p class="lead">Please enter your branch number, account number, and at least the first three characters of your last name or at least the first three characters of your company name below so we can locate your account.</p>
</div>
<div class="container">
@using (Html.BeginForm("TypeOfPayment", "Home", FormMethod.Post))
{
<div class="row">
<h2>Account Lookup</h2>
<div class=".col-md-4">
Branch Number
</div>
<div class=".col-md-8">
@Html.TextBoxFor(m => m.Branch, new {@class = "", @maxlength = "2"})
</div>
</div>
<div class="row">
<input id="submitpayment" class="typicalbutton" type="submit" value="Continue" />
</div>
}
</div>
私は追加のCSSコードを持っていないも、私は、既存のCSSのいずれかを変更しました。
これはかなり正直なはずですが、私は思ったコンセプトを掴んでいません。私は間違って何をしていますか?
class atrributesの値にドット文字を入力する際にエラーが発生しました。 class = "。col-md-4"を使用しないで、代わりにclass = "col-md-4"を使用してください。 –
[Twitter Bootstrap 3ラベル付きインラインフォーム]の重複している可能性があります(http:// stackoverflow。com/questions/21935933/twitter-bootstrap-3-in-label-with-labels) –
@AndrewBよろしくお願いします。それはうまくいった! tyvm – ErocM