How to Vertically Align a Table in CSS

前端 未结 3 1164
悲哀的现实
悲哀的现实 2021-01-13 04:47

How can I vertically align a table in the middle of the screen with css?

3条回答
  •  囚心锁ツ
    2021-01-13 05:12

    Generally something along the lines of this works pretty well in any block element with a defined height.

    table { 
     position: absolute;
     top: 50%;
     margin-top: -50%;
    }
    

    Centering on the page is harder since you don't have a defined height, but I think this works.

    html {
     height: 100%;
    }
    

    You may encounter some browser differences, act accordingly.

提交回复
热议问题