Forum,
I'm trying to make the left spacing equal to 0. I have tried setting padding:left equal to 0, but that doesn't work. Any suggestions??
I also would like cellspacing to the right to in smaller. Such as 1/2 instead of 1. Any help here as well??
Thanks,
I'm trying to make the left spacing equal to 0. I have tried setting padding:left equal to 0, but that doesn't work. Any suggestions??
I also would like cellspacing to the right to in smaller. Such as 1/2 instead of 1. Any help here as well??
Thanks,
Code:
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <title>Untitled Document</title> </head> <body> <p>I'm trying to make the left spacing equal to 0. I have tried setting padding:left equal to 0, but that doesn't work. Any suggestions??</p> <table width="112" border="0" cellpadding="0" cellspacing="1" bgcolor="#D5DCD1" style="padding:left=0 "> <tr> <td bgcolor="#F9F9F9"><p> </p> <p>example 1 </p> <p> </p> <p> </p></td> </tr> <tr> <td bgcolor="#F9F9F9"><p>example 2 </p> <p> </p></td> </tr> <tr> <td bgcolor="#F9F9F9"><p>example 3 </p> <p> </p> <p> </p></td> </tr> </table> <p> </p> </body> </html>
Comment