6

我正在使用带有 HAML 的 rails 框架,并且我有引导设置。我将如何分别格式化字段输入。我希望名称的输入字段为屏幕的 60% 向左浮动,价格的输入为屏幕的 25% 并向右浮动。

我想我在问如何将类添加到 form_for 中的单个输入。谢谢

= form_for @product,:url => products_path, :html => { :id => "fileupload", :multipart => true } do |f| 
  %p
    = f.label :name
    = f.text_field :name # i want to format this
  %p
    = f.label :price
    = f.text_field :price
4

1 回答 1

22

您可以向任何表单助手添加一个类并使用 CSS 对其进行格式化:

= f.text_field :name, class: 'your_class' # i want to format this

当然,您也可以直接设置样式选项,但建议将内容和样式分开。所以不要

= f.text_field :name, style: 'float: left; width: 60%; display: block' # i want to format this
于 2013-07-06T21:08:05.973 回答