How can I center the table within a div using html?
table
div
I have placed my content within a div tag and set the text-align
text-align
Give width to table, and set margin auto horizontally.
table { width:500px; margin: 10px auto; }