在我看来有这个按钮:
<%= button_to 'YES', { :controller => 'pages', :action => 'yes', :id => p.id, remote: true}, {class: "yes_button"} %>
在 .css 中,我尝试使用以下方式设置按钮的样式:
.yes_button {
color: white;
background-color:#828282;
display:inline-block;
font-family: 'Fjalla One', serif;
font-size: 9pt;
font-weight: 100;
text-align: center;
font-style: italic;
padding:0px 6px;
padding-right: 8px;
padding-top: 2px;
text-decoration:none;
}
但似乎还有一些其他样式应用于按钮以及我应用的自定义样式。有没有办法在我添加自己的样式之前删除所有样式?(或以其他方式修复它)?