如何向form_for中的单个输入添加样式

How to add styling to a single input in a form_for

提问人:Alain Goldman 提问时间:7/7/2013 更新时间:11/18/2023 访问量:19759

问:

我正在将 rails 框架与 HAML 一起使用,并且我有引导程序设置。如何单独格式化字段输入。我希望 name 的输入字段是屏幕向左浮动的 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
Ruby-on-Rails Ruby Haml 推特引导轨

评论


答:

26赞 Martin M 7/7/2013 #1

您可以将类添加到任何表单助手,并使用 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

评论

1赞 Alain Goldman 7/7/2013
谢谢你的回答!我不能再标记你 3 分钟了。
1赞 W.M. 7/26/2019
适用范围:simple_form, input_html: {style: 'direction: ltr;'}
0赞 Martin M 10/12/2022
更好:使用:simple_form, input_html: {class: 'your_class'}
0赞 demir demirhan 11/16/2023 #2
<%= f.password_field :password, class: "your style class", style: "display: block;" %>

评论

0赞 Community 11/18/2023
正如目前所写的那样,你的答案尚不清楚。请编辑以添加其他详细信息,以帮助其他人了解这如何解决所提出的问题。您可以在帮助中心找到有关如何写出好答案的更多信息。
0赞 Jeremy Caney 11/18/2023
感谢您对 Stack Overflow 社区的贡献。这可能是一个正确的答案,但提供代码的额外解释,以便开发人员能够理解你的推理,这将是非常有用的。这对于不熟悉语法或难以理解概念的新开发人员特别有用。为了社区的利益,您能否编辑您的答案以包含其他详细信息?