Forum Moderators: not2easy
[edited by: DrDoc at 9:22 pm (utc) on Dec 9, 2013]
[edit reason] No URLs please [/edit]
text-align: center will work fine. You can either apply that via a class or a CSS3 selector which targets the first child. colgroups you can even use the style attribute on the column in question. text-align: center is not working as expected, then there's something else going on overriding it.
If using text-align: center is not working as expected, then there's something else going on overriding it.
cells are descendants of rows, never of columns. Nevertheless, some aspects of cells can be influenced by setting properties on columns.
table.thisclass td:first-child {blahblah} table.thisclass td.special:first-child {otherblahblah} [edited by: bill at 8:08 am (utc) on Dec 10, 2013]
[edit reason] fix [/edit]