How can I vertically center an element with GWT?

前端 未结 3 1028
被撕碎了的回忆
被撕碎了的回忆 2021-02-09 17:52

Perhaps I haven\'t been searching the right way but I cannot figure out for the life of me how to center an element using GWT Layout Panels.

I\'m using UiBinder and I\'v

3条回答
  •  我寻月下人不归
    2021-02-09 18:10

    You can use styleName attribute in your component. For Example:

    
    
        
            
        
    
    
    

    and have

    .verticalAlign{
    vertical-align: middle;
    }
    

    in your style.css

提交回复
热议问题