通过使用GWT UiBinder如何修复屏幕底部的图像?以及如何在屏幕中央修复图像?拜托你们任何人帮助我。
答案 0 :(得分:1)
#imageatbottomofscreen{
position:fixed;
bottom:0px;
}
#imageincenterofscreen{
position:absolute;
top:50%;//may not need
left:50%;//these two lines
height:400px;
width:1000px;
margin-left:-500px;//half of width
margin-top:-200px;//half of height
}
答案 1 :(得分:0)
如果您正在使用UIBinder I图像,那么您正在使用Layout Widget。在这种情况下,我会修改代码以使用DockLayoutPanel或使用align属性播放的一些VerticalPanel或HorizontalPanel。
查看官方文档:DevGuideUIPanels