Bootstrap Form - 同一行上的Label和Input Horizo​​ntal

Dod*_*nas 0 forms twitter-bootstrap

使用引导程序,每次添加"标签"时,它都会创建一个新的垂直线.但是,我想要实现的是在同一行水平放置两个标签.

我曾尝试与"控制组"合作,但未能按照我想要的方式工作.

这基本上是我想要实现的(注意它们都是水平的):

Date                       Start & End Time
 <<input goes here>>       <<start input here>>   <<end input here>>
Run Code Online (Sandbox Code Playgroud)

这是我目前在这个JS Bin上(大致)坚持的链接.

任何帮助将不胜感激!

Chr*_*loe 5

使用网格系统创建两列

<div class="row-fluid">
    <div class="span6"><!-- first col --></div>
    <div class="span6"><!-- second col --></div>
</div>
Run Code Online (Sandbox Code Playgroud)