Documentation icon indicating copy to clipboard operation
Documentation copied to clipboard

Table Headers are Always Left Aligned

Open ChampionAsh5357 opened this issue 3 years ago • 0 comments

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 avatar Apr 03 '22 15:04 ChampionAsh5357