-
-
Notifications
You must be signed in to change notification settings - Fork 193
Open
Labels
ThemeRelated to the theme of the docsRelated to the theme of the docs
Description
Table headers are always left aligned. This seems to be as a result of a configuration in Web which was not properly handled for GitHub markdown.
This can be remedied using attribute selectors on the CSS headers to match the alignment of the td:
th[align="center"] {
text-align: center;
}
th[align="left"] {
text-align: left;
}
th[align="right"] {
text-align: right;
}Metadata
Metadata
Assignees
Labels
ThemeRelated to the theme of the docsRelated to the theme of the docs
