Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 27th, 2012  |  syntax: None  |  size: 0.49 KB  |  hits: 16  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Label and textbox on the same line   textbox on the whole width
  2. <div class="editor-label"> @Html.LabelFor(model => model.Descr) </div>
  3. <div class="editor-field"> @Html.EditorFor(model => model.Descr) </div>
  4.  
  5. <div class="editor-label"> @Html.LabelFor(model => model.Year) </div>
  6. <div class="editor-field"> @Html.EditorFor(model => model.Year) </div>
  7.        
  8. .editor-label {
  9.     float: left;
  10.     width: 200px;
  11. }
  12.  
  13. .editor-field {
  14.     margin-left: 200px;
  15. }
  16.  
  17. .editor-field input {
  18.     width: 100%;    
  19. }