Label and text box on the same line using css

前端 未结 4 822
离开以前
离开以前 2020-12-08 15:30

When creating a new asp.net mvc3 app you get the logon and register form with a label above the text field. I want to change it so that both the label and field are on the s

4条回答
  •  时光取名叫无心
    2020-12-08 16:15

    I'm using this css

    .editor-label
    {   display: block;
        float: left; 
        padding: 0; 
        width: 150px;
        margin: 1em 1em 0 0;
    }
    
    .editor-field
    {
        width:auto;
        margin: 0.5em 0 0 0;
        overflow: auto;
        min-height: 2em;
    }
    

提交回复
热议问题