如何把图像的主要面按钮,当鼠标在和鼠标远离按钮



我使用的是3.5

我有一个问题,而设置图像按钮时,鼠标在和鼠标远离按钮。请告诉我如何处理质面。

Thanks in advance

我明白了

XHtml代码:

    <p:commandButton icon="myIcon" styleClass="myButton"  
                     actionListener="#{routeController.createNewRoute}"
                     update=":routeHeaderForm"/>
CSS代码:

.myButton .myIcon {
                background: url('../images/add_off_18.png');
                width: 39px; height: 19px;
                left: 1%;
                margin-left:0px;
            }
          .myIcon:hover {
                width: 39px; height: 19px;
                background: url('../images/add_on_18.png');
            }
          .myButton {
                width: 39px; height: 19px;
            }

相关内容

  • 没有找到相关文章

最新更新