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

后端 未结 6 1115
别那么骄傲
别那么骄傲 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:33

    html, body {
        width: 100%;
    }
    table {
        margin: 0 auto;
    }
    

    Example JSFiddle

    Vertically aligning block elements is not the most trivial thing to do. Some methods below.

    • Understanding vertical-align, or "How (Not) To Vertically Center Content"
    • Vertical Centering in CSS

提交回复
热议问题