tr:在css中指定的commandlink颜色不起作用,而同样在内联样式中工作

时间:2014-04-30 20:18:44

标签: css jsf myfaces

<tr:commandLink inlineStyle="color:green" value="mylink" /> 

显示&#34; mylink&#34;绿色,而下面的代码行不会改变链接的颜色

<tr:commandLink styleClass="myStyle" value="mylink" /> 

和css在

之下
<style>
.myStyle
{color:green;}

</style>  

当我尝试使用样式类更改链接的颜色时,它不会更改。有谁可以帮助我?

2 个答案:

答案 0 :(得分:0)

尝试

<h:commandLink>
  <h:outputText value="myLink" styleClass="myStyle" />
</h:commandLink>

答案 1 :(得分:0)

看起来特立尼达皮肤覆盖了你的颜色。为防止这种情况发生,您需要在自己的风格中设置!important

<style>
.myStyle {color:green !important;}
</style>