2

我正在使用上述内容,并希望在我的水平形式中有一些内联输入。例如:

Zip | City

尝试了几件事,比如浮动或自己的 div,但它从来没有为我工作过。此外,我更愿意找到一个 DSL 解决方案而不是 css。

另一方面:您更愿意推荐使用 twitter_bootstrap_form_for 吗?

4

1 回答 1

1

我建议你考虑使用 Twitter Bootstrap。它非常易于使用,并使日常任务变得简单。例如,下面是用于实现水平内联表单的代码:

<form class="well form-inline">
  <input type="text" class="input-small" placeholder="Email">
  <input type="password" class="input-small" placeholder="Password">
  <label class="checkbox">
    <input type="checkbox"> Remember me
  </label>
  <button type="submit" class="btn">Sign in</button>
</form>
于 2012-06-04T10:48:46.673 回答