How to align all fields as label width grows

后端 未结 5 2499
暖寄归人
暖寄归人 2021-02-20 18:05

I have a form where the labels are on the left and the fields on the right. This layout works great when the labels have small amounts of text. I can easily set a min-widt

5条回答
  •  旧时难觅i
    2021-02-20 18:19

    What about this solution?


    css:

    label
    {
      display: block;
    }
    .column{
        float:left;
    }
    

    fiddle: http://jsfiddle.net/steweb/xzHe6/

提交回复
热议问题