2

按钮如下:

    <%= render 'follow_form' if signed_in? %>

在 follow_form 中:

    <%= render 'follow' %>

在 follow.html.erb 中:

    <%= form_for current_user.relationships.build(:followed_id => @user.id),
         :remote => true do |f| %>
    <div><%= f.hidden_field :followed_id %></div>
    <div class="actions"><%= f.submit "Watch" %></div>
    <% end %>

我将如何使用 CSS 设置样式?

4

2 回答 2

3

您可以简单地将参数传递给f.submit帮助程序,包括类和/或 ID,以使按钮能够由 CSS 设置样式。例如,您可以将其放入 ERB:

<div class="actions"><%= f.submit "Watch", :class => "button" %></div>

然后有一个适用于此的 CSS 类,例如:

.button{
  color: #bbbbbb;
  width: 200px;
  height: 100px;
  /*add any other properties you want to style*/
}
于 2012-04-13T07:06:47.620 回答
3

尝试 :

<%= f.submit "Watch" , :style => 'padding-top: 14px', :class => 'class_name' %>
于 2012-04-13T07:00:10.080 回答