Explanation

In IE8, the initial value for text-align for TH elements is center. As a result, TH elements do not inherit text-align values from their parent elements (TR, THEAD, TBODY, TFOOT, etc.).

Demonstration

This should be right-aligned

Workaround

Add text-align:inherit to the TH element.

workaround