xhtml ページに p:commandLink があります
value 属性に value を、styleClass 属性に image を指定しました。画像に値を表示します。(画像を値でオーバーライド)
画像だけを表示するには?
XHTML コード:
<p:commandLink actionListener="#{userController.createNewUser}"
update=":userRightPaneForm"
styleClass="newButtonLnk"
value="New">
</p:commandLink>
CSS コード:
.newButtonLnk { width: 40px; height: 17px;
background: url('../images/buttons/new_off.png')
no-repeat;
display: inline-block;
}
.newButtonLnk:hover{ width: 40px; height: 17px;
background: url('../images/buttons/new_on.png')
no-repeat;
}
ここで私を助けてください。