简体   繁体   中英

Twitter Bootstrap nested form

I just started with Twitter Bootstrap and can't find out how to do this. I want to create a form with the following layout:

+---------+ +---------------------------+
| input 1 | |                           |
+---------+ |                           |
+---------+ |                           |
| input 2 | |      textarea             |
+---------+ |                           |
+---------+ |                           |
| input 3 | |                           |
+---------+ +---------------------------+

I can find some examples on how to nest controls horizontal with the grid system (like this ), but for the vertical nesting of controls I couldn't find anything.

Is it possible to create a layout like this without using a table?

Just wrap the 3 in a <div class="span2">

And the textarea in a <div class="span5">

Or whatever ratio, brings about your desired result....

Like So...

<div class="row-fluid span12">
  <div class='span2'>
       <div control-group....>
       <input...> 
       <input...>
       <input...>
       </div>
 </div>
 <div class="span5">
      <textarea></textarea>
 </div>
</div>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM