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


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

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

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

css低于

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

当我尝试使用样式类来更改链接的颜色时,它不会改变。有人能帮我吗?

看起来trinidad皮肤覆盖了你的颜色。为了防止这种情况,您需要在您的样式中设置!important

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

尝试

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

相关内容

  • 没有找到相关文章

最新更新