GWT无法将背景图像添加到简单面板

时间:2015-08-04 11:51:43

标签: gwt

我有一个SimplePanel,我正在尝试以编程方式设置它的背景图像,但是下面的方法不起作用。为什么?

this.coverImage.getElement().getStyle().setBackgroundImage("images/veg.jpg");

对于:

风格:

.coverImage{
  width:400px;
  background-color:#e5e5e5;
  background-repeat: no-repeat;
  height:190px;
  z-index:-1;
}

但是,添加background-image:url("images/veg.jpg")可以正常工作。

1 个答案:

答案 0 :(得分:3)

你几乎得到了它;)

this.coverImage.getElement().getStyle().setBackgroundImage("url('images/veg.jpg')");