1

我在 xhtml 页面中有 ap: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 中图像的边框。我不需要边框。

请告诉一个解决方案。

4

1 回答 1

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'); }
于 2013-01-31T13:47:09.660 回答