I have a simple php table of two columns. The left column is aligned right, and the second one is aligned left. For some reason or another, I can't post a screen shot. How do I get the space between those two columns aligned with the center of the page?
Here's the code for the first row:
echo "<table border = 0 width = 100%";
echo "<tr>";
echo "<td style='text-align:right; padding:3px 3px 0px 3px; Border:2px; font:15px Arial, sans-serif'>System:</td>"; //top right bottom left
echo "<td style='text-align:left; padding:3px 3px 0px 3px; font:15px Arial, sans-serif'>" . $System . "</td>";
echo "</tr>";