web
You’re offline. This is a read only version of the page.
close
Skip to main content

Notifications

Announcements

No record found.

Community site session details

Community site session details

Session Id :

how to centralize a html table using CSS ?

Haansi Profile Picture Haansi 1,433 Moderator

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;
}


Comments

*This post is locked for comments