<%= link_to "Sign In", new_user_session_path, :method => :get, style: "color:white" %>
<h3>Read More - <%= link_to 'Article', action: :articles, style: "color: purple" %></h3>
<%= link_to 'Click to Read More About What People Are Saying About Us', action: :articles %>
所以我在html.erb文件的主体中有上面三行代码。
第一个“登录”显示为白色,如我所愿。
第二个“文章”链接显示为黑色!我想要紫色。
第三个,显示为灰色。但我希望它是白色的。
究竟是什么问题?我正在尝试同时学习rails和css。
以下是我的总体scaffolds.css.scss文件:
body {
background-color: #fff;
color: #333;
font-family: verdana, arial, helvetica, sans-serif;
font-size: 13px;
line-height: 18px;
}
p, ol, ul, td {
font-family: verdana, arial, helvetica, sans-serif;
font-size: 13px;
line-height: 18px;
}
pre {
background-color: #eee;
padding: 10px;
font-size: 11px;
}
a {
color: #000;
&:visited {
color: #666;
}
&:hover {
color: #fff;
background-color: #000;
}
}
div {
&.field, &.actions {
margin-bottom: 10px;
}
}
#notice {
color: green;
}
.field_with_errors {
padding: 2px;
background-color: red;
display: table;
}
#error_explanation {
width: 450px;
border: 2px solid red;
padding: 7px;
padding-bottom: 0;
margin-bottom: 20px;
background-color: black;
h2 {
text-align: left;
font-weight: bold;
padding: 5px 5px 5px 15px;
font-size: 12px;
margin: -7px;
margin-bottom: 0px;
background-color: #c00;
color: #fff;
}
ul li {
font-size: 12px;
list-style: square;
}
}
编辑:添加了渲染的HTML:
<a data-method="get" href="/users/sign_in" style="color:white">Sign In</a>
<h3>Read More - <a href="/articles?style=color%3A+purple">Articles</a></h3>
<a href="/articles">Click to Read More About What People Are Saying About Us</a>
答案 0 :(得分:3)
第二个链接:您需要将html_options
与url_options
分开:
<h3>Read More - <%= link_to 'Article', {action: :articles}, {style: "color: purple"} %></h3>
否则rails会创建一个链接,认为style: ...
是通过网址传递的额外GET参数。
与最后一个很难说,很可能你的css指令被另一个css文件覆盖。在您的浏览器上安装firebug(如果使用FF / Chrome)或使用开发人员工具(IE)来查找正在设置链接的最终颜色的位置。
答案 1 :(得分:1)
我很确定这段代码会起作用
<%= link_to "button_name",{:controller => 'controller_name', :action => 'action_name'},{:style=>"color:#fff;"}%>