2016-10-22 9 views
-1

私はbootswatchにこのスタイルを探していました:https://bootswatch.com/simplex/ASP.NETブートストラップ間違って表示

そして、特に、ここでのようなスタイリングフォーム、探し:

Style as shown on bootswatch.com

しかし、私はあなたのコードを追加するとき私のウェブサイトへのブートスウォッチのフォーム例の右上にある小さな赤色のアイコンをクリックすると、次のようになります:

テキストラベルと入力フィールドの間に改行があり、少し濃い色の背景ボックスは表示されず、他のものも整列していません。それはどうやって来るの?

@model WebProto.ViewModels.NewChartConfigViewModel 
@using MaschinenModell; 

@{ 
    ViewBag.Title = "Neues Diagramm"; 
    Layout = "~/Views/Shared/_Layout.cshtml"; 
} 

<form class="form-horizontal"> 
    <fieldset> 
     <legend>Legend</legend> 
     <div class="form-group"> 
      <label for="inputEmail" class="col-lg-2 control-label">Email</label> 
      <div class="col-lg-10"> 
       <input type="text" class="form-control" id="inputEmail" placeholder="Email"> 
      </div> 
     </div> 
     <div class="form-group"> 
      <label for="inputPassword" class="col-lg-2 control-label">Password</label> 
      <div class="col-lg-10"> 
       <input type="password" class="form-control" id="inputPassword" placeholder="Password"> 
       <div class="checkbox"> 
        <label> 
         <input type="checkbox"> Checkbox 
        </label> 
       </div> 
      </div> 
     </div> 
     <div class="form-group"> 
      <label for="textArea" class="col-lg-2 control-label">Textarea</label> 
      <div class="col-lg-10"> 
       <textarea class="form-control" rows="3" id="textArea"></textarea> 
       <span class="help-block">A longer block of help text that breaks onto a new line and may extend beyond one line.</span> 
      </div> 
     </div> 
     <div class="form-group"> 
      <label class="col-lg-2 control-label">Radios</label> 
      <div class="col-lg-10"> 
       <div class="radio"> 
        <label> 
         <input type="radio" name="optionsRadios" id="optionsRadios1" value="option1" checked=""> 
         Option one is this 
        </label> 
       </div> 
       <div class="radio"> 
        <label> 
         <input type="radio" name="optionsRadios" id="optionsRadios2" value="option2"> 
         Option two can be something else 
        </label> 
       </div> 
      </div> 
     </div> 
     <div class="form-group"> 
      <label for="select" class="col-lg-2 control-label">Selects</label> 
      <div class="col-lg-10"> 
       <select class="form-control" id="select"> 
        <option>1</option> 
        <option>2</option> 
        <option>3</option> 
        <option>4</option> 
        <option>5</option> 
       </select> 
       <br> 
       <select multiple="" class="form-control"> 
        <option>1</option> 
        <option>2</option> 
        <option>3</option> 
        <option>4</option> 
        <option>5</option> 
       </select> 
      </div> 
     </div> 
     <div class="form-group"> 
      <div class="col-lg-10 col-lg-offset-2"> 
       <button type="reset" class="btn btn-default">Cancel</button> 
       <button type="submit" class="btn btn-primary">Submit</button> 
      </div> 
     </div> 
    </fieldset> 
</form> 

答えて

0

わかりましイム愚かひっくり返す:

これは私のページの全体のコードです。それはインターネットエクスプローラで作成したウェブページを表示したためです。私のせい! :D

Firefox、Opera、Chromeで正しく表示されます。

関連する問題