center table in HTML

前端 未结 8 1145
抹茶落季
抹茶落季 2020-12-03 08:53

How can I center the table within a div using html?

I have placed my content within a div tag and set the text-align

8条回答
  •  抹茶落季
    2020-12-03 09:28

    Give width to table, and set margin auto horizontally.

    table {
      width:500px;
      margin: 10px auto;
    }
    

提交回复
热议问题