Skip to content

Table Headers are Always Left Aligned #431

@ChampionAsh5357

Description

@ChampionAsh5357

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;
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    ThemeRelated to the theme of the docs

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions