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\'
Set a fixed with of your image in your css and add an auto-margin/padding on the image to...
auto
div.image img { width: 100px; margin: auto; }
Or set the text-align to center...
text-align
td { text-align: center; }