我有一个GWT应用程序。我使用UiBinder来声明我的界面。
我的RootView中的页脚有问题。它在Chrome,Firefox中运行良好,但在IE9中它并不停留在页面底部。我能为这个问题做些什么?
您能否为我提供一些有关GWT浏览器兼容性的文章?
这是我的RootView.ui.xml的片段
<g:DockLayoutPanel unit="PCT" ui:field="rootPanel" height="100%">
<g:west size="7">
<g:SimplePanel styleName="west-gap"/>
</g:west>
<g:center>
<g:HTMLPanel styleName="page-content">
<g:HorizontalPanel height="100%" width="99%">
<g:VerticalPanel width="100%" height="100%">
<g:cell height="75px">
<g:SimplePanel ui:field="northPanel" styleName="header"/>
</g:cell>
<g:cell height="100%">
<g:SimplePanel ui:field="centerPanel" styleName="page-center-content"
height="100%"/>
</g:cell>
<g:cell height="30px">
<g:SimplePanel ui:field="southPanel" styleName="footer"/>
</g:cell>
</g:VerticalPanel>
<g:cell width="7%" height="100%">
<g:SimplePanel styleName="east-gap" width="100%" height="100%"/>
</g:cell>
</g:HorizontalPanel>
</g:HTMLPanel>
</g:center>
</g:DockLayoutPanel>
感谢您的回答。