Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Center tables in HTML #9165

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Center tables in HTML
  • Loading branch information
remysucre authored Nov 2, 2023
commit 53de02c8ab7bdedeee67b338485a7ceac8019a63
4 changes: 1 addition & 3 deletions data/templates/styles.html
Original file line number Diff line number Diff line change
Expand Up @@ -136,11 +136,9 @@
margin: 1em 0;
}
table {
margin: 1em 0;
margin: auto;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
Expand Down
Loading