Skip to content

Instantly share code, notes, and snippets.

@yumyo
Forked from danielpietzsch/table_alignment.css
Created July 15, 2016 08:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yumyo/7ad4e14f9f2e233558f80c6fc32973b7 to your computer and use it in GitHub Desktop.
Save yumyo/7ad4e14f9f2e233558f80c6fc32973b7 to your computer and use it in GitHub Desktop.
How to align a HTML table inside a div
/* Align a table right inside a div element */
/* Adjust accordingly for centering the table */
div.contains_table {
text-align: right;
}
div.contains_table table {
margin-right: 0;
margin-left: auto;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment