2016-10-22 85 views
-1

我一直在尋找了上bootswatch這種風格:https://bootswatch.com/simplex/ASP.NET引導錯誤顯示

,尤其是看了造型形式,喜歡這裏:

Style as shown on bootswatch.com

但當我添加代碼,您點擊位於bootswatch上右側的紅色小圖標,進入我的網站,看起來像這樣:

Wrong Display

因此,文本標籤和輸入框在它們之間有一個換行符,沒有顯示一個較暗的陰影背景框,而其他東西也沒有對齊。這是怎麼回事?

這是我的整個頁面的代碼:

@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

好吧我太傻翻轉。因爲我顯示了我在Internet Explorer中創建的網頁。我的錯! :D

Firefox,Opera和Chrome將其正確顯示。