The cell contains nothing but a checkbox. It is rather wide because of text in the table header row. How do I center the checkbox (with inline CSS in my HTML? (I know))
Define the float property of the check element to none:
float: none;
And center the parent element:
text-align: center;
It was the only that works for me.