It seems align
is not working for the th element. Here is my HTML:
In HTML5, the easiest, and fastest, way to center your
is to add a THcontent colspan
like this:
Thcontent
This will work if your table is three columns. So if you have a four-column table, add a colspan
of 4, etc.
You can manage the location furthermore in the CSS file while you have put your colspan
in HTML like I said.
th {
text-align: center; /* Or right or left */
}