GWT HTMLPanel 高度问题

发布于 2024-11-05 14:54:10 字数 241 浏览 0 评论 0原文

我正在使用 GWT HtmlPanel 对小部件进行分组。我想使用 CSS 将 HtmlPanel 的高度设置为 100%。并为其设置背景颜色。

这是我的代码:

CSS: .loginhtmlpan { 宽度:100%; 高度:100%; 背景颜色:#424242; 请

在这方面帮助我。

I am using GWT HtmlPanel to group the widgets. I want to set the height for the HtmlPanel as 100% using CSS. and set the background-color to it.

Here it is my code:

CSS:
.loginhtmlpan {
width: 100%;
height: 100%;
background-color: #424242;
}

please help me in this context.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

北凤男飞 2024-11-12 14:54:10

尝试使用基于约束的 CSS 定位,而不是以编程方式指定特定的高度和宽度。这正在成为标准 GWT 小部件的常见做法。像这样的样式:

.myCssStyle {
位置:绝对;
顶部:0;
左:0;
右:0;
底部:0;
然后,

您可以使用 addStyleName("myCssStyle") 将此样式添加到 HTMLPanel - 这样做的好处是,当浏览器调整大小事件发生时,将免费正确调整 HTMLPanel 的大小。附带说明一下,大多数 GWT“布局”容器都使用基于约束的定位(DockLayoutPanel、LayoutPanel、SplitLayoutPanel 等)。

Try using constraint-based CSS positioning rather than specifying specific heights and widths programmatically. This is becoming common practice for standard GWT-widgets. A style like:

.myCssStyle {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}

You can then add this style to your HTMLPanel using the addStyleName("myCssStyle") - the nice thing about this is that proper resizing of your HTMLPanel will occur for free when browser resize events occur. As a side note, most GWT "Layout" containers use constraint-based positioning (DockLayoutPanel, LayoutPanel, SplitLayoutPanel, etc).

枫林﹌晚霞¤ 2024-11-12 14:54:10

将 css 样式应用到 gwt 小部件的最简单方法:

  1. 链接 host.html 文件中的样式表。

  2. 创建 html 面板时调用 myHtmlPanel.addStyleName("loginhtmlplan")

请参阅 http ://google-web-toolkit.googlecode.com/svn/javadoc/2.3/com/google/gwt/user/client/ui/UIObject.html了解更多详情

The simplest way to apply a css style to a gwt widget:

  1. Link the stylesheet in your host.html file.

  2. call myHtmlPanel.addStyleName("loginhtmlplan") when you create the html panel

See http://google-web-toolkit.googlecode.com/svn/javadoc/2.3/com/google/gwt/user/client/ui/UIObject.html for more details

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