使用客户端包中定义的图像作为背景图像
我正在尝试使用图像作为按钮的背景。 我将图像定义为客户端捆绑包中的资源。
public interface MyResources extends ClientBundle {
@Source("image/hborder.png")
ImageResource hBorder();
}
在css文件中,我尝试使用以下代码引用此图像
.gwt-Button {
margin: 0;
padding: 3px 5px;
text-decoration: none;
font-size: small;
cursor: pointer;
cursor: hand;
gwt-image:'hBorder' ;
background: repeat-x 0px -27px;
border: 1px outset #ccc;
}
但图像未显示。我应该改变什么??
问题出在哪里..?
谢谢凯瑟
I am trying to use an image as a background of a button.
I defined the image as a resource in client bundle.
public interface MyResources extends ClientBundle {
@Source("image/hborder.png")
ImageResource hBorder();
}
In the css file, I tried to reference this image with the following code
.gwt-Button {
margin: 0;
padding: 3px 5px;
text-decoration: none;
font-size: small;
cursor: pointer;
cursor: hand;
gwt-image:'hBorder' ;
background: repeat-x 0px -27px;
border: 1px outset #ccc;
}
But the image is not shown. What should I change??
Where is the problem..?
Thanks
kayser
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要添加:
@sprite
并删除背景:用于显示图像,但请注意,还会将小部件的大小调整为图像的大小。
You need to add:
@sprite
and remove background:Works to show the image, but note that also resizes the widget to the image's size.