GWT 小部件位于底部,不知道高度/大小
我想要两个小部件堆叠起来
X
Y
我希望 Y 占据所需的高度(其静态大小,大约 50 像素,具体取决于浏览器字体等)并保持固定在屏幕底部,并且X 占据剩余的垂直空间。
X 恰好是一个带有 VerticalPanel 的滚动面板,Y 是一个 Grid,我尝试将它们放入各种容器中,但它们似乎都想要 Y 的大小(即 DockLayoutPanel 和 LayoutPanel)。如果我指定 Y 的大小,它最终会在一个浏览器或另一个浏览器的底部出现空白。有什么建议吗?
I want to have a two widgets to stack up
X
Y
I want Y to take up as much height as it needs (its static in size, roughly 50px depending on browser font, etc) and remain affixed to the bottom of the screen, and X to take the rest of the vertical space.
X happens to be a scrollpanel with VerticalPanel and more inside, Y is a Grid and I've tried putting them in various containers, but they all seem to want a size for Y (ie. DockLayoutPanel & LayoutPanel). If I specify a size for Y it ends up with white space at the bottom on one browser or another. Any advice?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这在 HTML/CSS 中是不可能的。如果您绝对无法提前知道 Y 的高度,解决方法是:
It's just not possible in HTML/CSS. If you absolutely cannot know the height of Y in advance, the way around it would be to: