css label width not taking effect

前端 未结 6 1042
青春惊慌失措
青春惊慌失措 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:27

    Make it a block first, then float left to stop pushing the next block in to a new line.

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

提交回复
热议问题