2011-01-07 96 views
2

如何風格(CSS)的默認腳手架有標籤,並在同一行的編輯器(標籤列有一個固定的寬度)樣式默認腳手架

<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> 

回答

4

您可能需要tweek寬度。只有在開發過程中,邊框才被用作指南。

<style type="text/css"> 

.editor-label { 
    float: left; 
    border: 1px solid red; 
    width: 200px; 
    margin-bottom: 4px; 
    } 

.editor-field { 
    float: left; 
    width: 400px; 
    border: 1px solid green; 
    } 

.editor-label:before { 
    clear: left; 
    } 

</style> 
+2

我複製/粘貼到我的樣式表中,但是clear:left似乎沒有生效。我在IE 8和Chrome 9中試過它。 – pettys

+0

當標籤的寬度大約爲400px,字段大小爲500px時,一切都很酷 –