Merge pull request #4548 from tk0miya/3942_html_table_is_not_aligned

Fix #3942: html: table is not aligned to center even if ``:align: center``
This commit is contained in:
Takeshi KOMIYA 2018-02-04 18:53:29 +09:00 committed by GitHub
commit 0396a604cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View File

@ -30,6 +30,7 @@ Bugs fixed
* #3953: Do not raise warning when there is a working intersphinx inventory
* #4487: math: ValueError is raised on parallel build. Thanks to jschueller.
* #2372: autosummary: invalid signatures are shown for type annotated functions
* #3942: html: table is not aligned to center even if ``:align: center``
Testing
--------

View File

@ -332,6 +332,11 @@ table.docutils {
border-collapse: collapse;
}
table.align-center {
margin-left: auto;
margin-right: auto;
}
table caption span.caption-number {
font-style: italic;
}