一直试图设置我的button_to
按钮,但没有运气。
我看过CSS文件并使用过
#button {color:red;}
,button {color:red;}
和.button {color:red;}
,但对所有人都无济于事。
我的HTML.ERB文件<%= button_to 'Compare DB',:action => "compare", :id => 'button'
中也有这个,但这没有帮助。
有什么理由不起作用?
CSS样式表链接到Rails应用程序,因为我尝试更改表的值,这不是问题。 已经尝试了一段时间,仍然无法找到解决方案。
答案 0 :(得分:2)
您可以使用内联样式
<%= button_to 'Compare DB',:action => "compare", :id => 'button', {:style => "background: color:red; } %>
或者你可以使用像
这样的css类<%= button_to 'Compare DB',:action => "compare", :id => 'button', {:class => "button"} %>