css label width not taking effect

前端 未结 6 1043
青春惊慌失措
青春惊慌失措 2020-12-23 02:37

I have a generic form, which I\'d like to style to align the labels and the input fields. For some reason when I give a width to the label selector, nothing happens:

6条回答
  •  一个人的身影
    2020-12-23 03:04

    Do display: inline-block:

    #report-upload-form label {
        padding-left:26px;
        width:125px;
        text-transform: uppercase;
        display:inline-block
    }
    

    http://jsfiddle.net/aqMN4/

提交回复
热议问题