How to put table in the center of the page using CSS?

后端 未结 6 1112
别那么骄傲
别那么骄傲 2020-12-04 22:51

I am using the following code. How to put this table in the center of the page using CSS?


    

        
6条回答
  •  隐瞒了意图╮
    2020-12-04 23:51

    1) Setting horizontal alignment to auto in CSS

    margin-left: auto; margin-right: auto;

    2) Get vertical alignment to centre of the page add following to css

    html, body { width: 100%; }

    For example :

    
    
    
    
    Table with css
    
    
    

提交回复
热议问题