如何删除p:commendlink中的边框?

时间:2013-01-04 15:43:52

标签: css image jsf user-interface primefaces

我在xhtml页面中有一个p:commandLink

<p:commandLink onclick="routeDeleteConfirmation.show()" title="Delete">
                    <h:graphicImage class="deleteBinButtonLnk" />
                    <f:setPropertyActionListener value="#{route}" 
                    target="#{routeController.selectedRouteHeader}"/>
</p:commandLink>

的CSS:

.deleteBinButtonLnk {  width: 17px; height: 19px;
                       border-style: none !important;
                       padding: 2px 2px;
                       background: url('../images/buttons/delete_bin_off.png')
                       no-repeat;
}

.deleteBinButtonLnk:hover{ width: 17px; height: 19px;
                           border: none;
                           background: url('../images/buttons/delete_bin_on.png')
                           no-repeat;

这里显示h:graphicImage中图像的边框。 我不需要边框。

请告诉解决方案。

1 个答案:

答案 0 :(得分:0)

我知道了。

styleClass而不是<h:graphicImage>

<p:commandLink 
   styleClass="accountEditBtn"
   update="@form"
   actionListener="#{someBean.someListener}"
</p:commandLink>

Css类

.accountEditBtn { background-image: url('../resources/image/pencil_black.png'); }