gpt4 book ai didi

css - 去除 GWT 生成的绝对位置

转载 作者:行者123 更新时间:2023-11-28 18:47:56 28 4
gpt4 key购买 nike

在我的网页中,我有一个菜单 (Horizo​​ntalPanel) 应该隐藏在页面的底部。为此,我尝试使用 RootLayoutPanel 类并在其中添加一个 south 小部件,我成功地做到了。但问题是菜单没有居中。我尝试添加另一个我写的 CSS(并注意位置):

.cetrer {
Margin-left : auto;
margin-right: auto;
position: relative;
}

但是当页面被重新渲染时,该位置被 GWT 设置为绝对位置。我试图通过将此 lign 添加到代码中来强制定位,但它没有用:

DOM.setElementAttribute(menuBar.getElement(), "style", "position: relative;");

那么有什么解决办法吗?谢谢

最佳答案

您是否尝试过添加 !important; ?喜欢:

.cetrer {
Margin-left : auto;
margin-right: auto;
position: relative !important;
}

虽然这不是最好的解决方案。

关于css - 去除 GWT 生成的绝对位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10096036/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com