Form inline inside a form horizontal in twitter bootstrap?

后端 未结 6 2161
逝去的感伤
逝去的感伤 2020-11-28 00:48

What\'s the best way to design a form that looks like this (please see link below) in twitter bootstrap without any homemade classes ?

Is it possible to set a inner

6条回答
  •  日久生厌
    2020-11-28 01:20

    I know this is an old answer but here is what I usually do:

    CSS:

    .form-control-inline {
       width: auto;
       float:left;
       margin-right: 5px;
    }
    

    Then wrap the fields you want to be inlined in a div and add .form-control-inline to the input, example:

    HTML

    
    

提交回复
热议问题