如何在HAML中向simple_forms添加CSS类

时间:2015-12-20 12:41:51

标签: css ruby-on-rails haml

我的Rails应用程序存在问题。我有这段代码:

= simple_form_for @post, html: { class: "newpost"}  do |f|
= f.input :title
= f.input :content
= f.submit :submit

它有效,但看起来很好。我试图寻找答案,我发现你可以添加这段代码:

= f.input :content, class: "name_of_class"

女巫什么都不做。我一直在寻找许多家庭的答案。

感谢。

PS:我也在使用HAML和Rails 4

编辑: 这是一张它看起来如何的图片: enter image description here

当我在Chrome中添加CSS时看起来就像我想要的那样:

enter image description here

但如果我尝试在代码中添加CSS,则不会发生任何事情。

1 个答案:

答案 0 :(得分:1)

尝试从表单中删除类newpost,并将表单放在带有newpost类的div中。我更喜欢将字段放在div中并从sass中更改输入样式。