私はap:commandLinkを持っています
.button{
background-image: url(http://www.lefinnois.net/aqua/aqua1.jpg);
display:inline-block;
width:150;
height:50;
}
<p:commandLink update="media" value="Ok"
action="#{productView.save}" styleClass="button">
</p:commandLink>
画像化されたボタンがあります。
しかし、ボタン画像の中央に「OK」のテキストを配置したい
あなたのアドバイスは何ですか、私は何かを試しましたが、これまでのところ応答がありません。
jsfがWebプロプラミングプラットフォームであれば、それは可能であるに違いないと思います。
解決済み
内側のオブジェクトを見つけるには、外側のオブジェクトにパディングを追加する必要があります。
最後のコード:
.button{
background-image: url(http://www.lefinnois.net/aqua/aqua1.jpg);
display:inline-block;
text-align: center;
padding-top:10px;//you must set it according to the height of image
width:150;
height:50;
}