-1

在我的代码中我有

<div class="row-fluid"><div class="span12" style="color:red"><a href="/event/alert/recipient/list/${alertStatusForm.forAlert.id}" class="underline">${fn:length(alertStatusForm.totalNotSentRecipient)}</a></div></div>

仍然无法正常工作请建议

4

3 回答 3

3

您必须将 CSS 直接应用于<a>. <a>默认情况下,元素不会继承字体颜色。

CSS:

.span12 a{
   color: red
}
a:visited{
   color: red
}
于 2013-08-27T11:58:15.403 回答
0
.span12 a
{
color : #FF0000;
}
.span12 a:visited
{
color: #FF0000;
}
于 2013-08-27T11:58:00.247 回答
0

用这个 .span12 a{ color:#000; }

于 2013-08-27T11:58:12.060 回答