当鼠标悬停时,primefaces CommandLink下划线不起作用

时间:2012-10-22 10:25:29

标签: jsf primefaces

<p:commandLink id="ajax" style="margin-right:20px;">  
            <h:outputText value="Ajax Submit" />  
        </p:commandLink>

我想在onmouseover上下划线。

1 个答案:

答案 0 :(得分:-1)

使用CSS样式。

示例:

<p:commandLink id="mycommandLinkID" .../>

CSS样式

a.mycommandLinkID:hover {
    text-decoration:underline;
}