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

Table Headers are Always Left Aligned #431

Open
ChampionAsh5357 opened this issue Apr 3, 2022 · 0 comments
Open

Table Headers are Always Left Aligned #431

ChampionAsh5357 opened this issue Apr 3, 2022 · 0 comments
Labels
Theme Related to the theme of the docs

Comments

@ChampionAsh5357
Copy link
Contributor

ChampionAsh5357 commented Apr 3, 2022

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.

Left Aligned Table

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;
}
@ChampionAsh5357 ChampionAsh5357 added the Theme Related to the theme of the docs label Apr 3, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Theme Related to the theme of the docs
Projects
None yet
Development

No branches or pull requests

1 participant