how to centralize a html table using CSS ?
Views (351)
To centralize a html table we will need to set left and right margin css properties of table to auto and apply the css class on html table.
table{
margin-left:auto;
margin-right:auto;
}

Like
Report
*This post is locked for comments