更改gwt中装饰标签栏的背景图像
如何更改 gwt 中装饰的 tabBar 的背景图像,或者装饰的 tabBar 不接受背景图像?这是我所做的 css
.gwt-DecoratedTabBar {
width: 910px;
height: 50px;
background: #565F68 url(images/topBar.jpg) no-repeat left top;
margin: 0px auto;
padding: 0px;
}
,我想将所有图像放在名为 asset 的文件夹中,而不是默认图像文件夹中 我如何在 css 中引用该文件夹
how do you change the background image of a decorated tabBar in gwt or the decorated tabBar wont accept a background image? here is the css I did
.gwt-DecoratedTabBar {
width: 910px;
height: 50px;
background: #565F68 url(images/topBar.jpg) no-repeat left top;
margin: 0px auto;
padding: 0px;
}
and I want to put all my images in a folder called assets instead of the default images folder
how do I refer to that folder in the css
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
我不太确定,您可以在后台指定这么多属性。
另外,您只需要创建一个名为 asset 的文件夹,并将“image/”更改为“assets/”。
Try this instead:
I´m not quite sure, that you can specify so many attributes in background.
Also, you just need to create a folder called assets, and change 'image/' to 'assets/'.