我使用primefaces作为库,我试图在commanbutton的背景中显示图像。 这是我的代码:
<p:commandButton image="button_image" type="submit" ajax="false" action="#{loginMB.connect()}"></p:commandButton>
在我的样式表中,我添加了这个结构:
.button_image {
background-image: url(../images/login.png) !important;
width:82px;
height:32px;
border:0px;
float: right;
margin-right: 24px;
}
但我得到的结果就是这个
我正在寻找这个