我正在尝试在按钮上附加图像,如何使用 CSS 为按钮放置图像?
这是我用于按钮的 CSS:
.amx-commandButton .btnSample{background: url("../Login/login1.png") ;
background-image: inherit;
background-repeat: no-repeat;
background-position: center; }
login1.png
是图像存在于Login
文件夹中。此图像未附加在按钮上。
这是 amx 文件中的按钮声明:
<amx:commandButton text="" id="cb1" action="login"
inlineStyle="color:White; height:42px; width:120px;" styleClass="btnSample"
/>