7

我正在尝试以我使用 simple_form gem 2.0.2 生成的表单更改字体大小和输入框和标签之间的间距。我确定有办法做到这一点?

目前我有:

<%= f.input :comment, :input_html => { :wrap => :soft, :rows => 2}, :label => 'Type in box below:', :item_wrapper_class => 'type' %>

在我的 CSS 中:

    .type{
  font-size: 24px;
  margin-top: 15px;
}

我在这个网站上的一篇文章中读到“item_wrapper_class”可以解决问题,但是当我去检查 Chrome 中的元素时,在“下面的框中输入:”部分,它甚至没有选择 .type 类,在我的 css - 它只是进入默认标签类,在引导程序中。

任何帮助将不胜感激,谢谢。

4

2 回答 2

16

这对我有用:

<%= f.input :comment, :input_html => { :wrap => :soft, :rows => 2}, :label => 'Type in box below:', :label_html => { :class => 'type' } %>
于 2013-06-22T23:25:58.467 回答
2

你有没有尝试过这样的事情?

<%= f.input :comment, :input_html => { :wrap => :soft, :rows => 2}, :label => 'Type in box below:', wrapper_html: { class:  'type' } %>
于 2013-06-22T02:09:53.763 回答