gpt4 book ai didi

ruby-on-rails - 如何在 Ruby on Rails 中设置按钮样式

转载 作者:行者123 更新时间:2023-12-04 06:26:27 25 4
gpt4 key购买 nike

按钮如下:

    <%= 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 设置样式?

最佳答案

您可以简单地将参数传递给 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*/
}

关于ruby-on-rails - 如何在 Ruby on Rails 中设置按钮样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10136487/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com