ruby 如何在form_for中为单个输入添加样式

vx6bjr1n  于 2023-11-18  发布在  Ruby
关注(0)|答案(2)|浏览(105)

我正在使用rails框架和HAML,我有引导设置。我将如何分别格式化字段输入。我希望name的输入字段为屏幕左侧浮动的60%,price的输入字段为屏幕右侧浮动的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

字符串

mklgxw1f

mklgxw1f1#

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

v09wglhw

v09wglhw2#

<%= f.password_field :password, class: "your style class", style: "display: block;" %>

字符串

相关问题