更改gwt中装饰标签栏的背景图像

发布于 2024-11-28 08:17:55 字数 318 浏览 0 评论 0原文

如何更改 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

可是我不能没有你 2024-12-05 08:17:55

试试这个:

.gwt{
    position: absolute;
    width: 910px;
    height: 50px;
    background: url('images/topBar.jpg') no-repeat;
    margin: 0 auto;
    padding: 0px;
}

我不太确定,您可以在后台指定这么多属性。

另外,您只需要创建一个名为 asset 的文件夹,并将“image/”更改为“assets/”。

Try this instead:

.gwt{
    position: absolute;
    width: 910px;
    height: 50px;
    background: url('images/topBar.jpg') no-repeat;
    margin: 0 auto;
    padding: 0px;
}

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/'.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文