I\'ve been trying to align an image to the center of the table td. It worked with setting margin-left to a specific value but it also increased the size of td too and that isn\'
Simple way to do it for html5 in css:
td img{ display: block; margin-left: auto; margin-right: auto; }
Worked for me perfectly.