When adding cell padding to one cell in a table it stuffs up the column
widths for the rest of the table!!
Does anyone know of a workaround?
<HTML>
<HEAD>
<STYLE TYPE='text/css' MEDIA=screen>
TD.KeyValues{
background:pink;
padding:30pt;
color:black;
}
TD.HR{
background:white;
padding:0pt;
}
</STYLE>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
</HEAD>
<body>
<TABLE WIDTH="600" CELLSPACING="0" CELLPADDING=0 BORDER=0>
<TR>
<TD BGCOLOR=#000000 WIDTH="25"></TD>
<TD BGCOLOR=#22AAAA WIDTH="175">Product ID:</TD>
<TD BGCOLOR=#22AAAA WIDTH="400">40</TD>
<TD BGCOLOR=#000000 WIDTH="0"></TD>
</TR>
<TR>
<TD BGCOLOR=#000000></TD>
<TD BGCOLOR=RED COLSPAN="2"><IMG
src="../../images/layouts/0000000/0000001/ruler1.gif" width=575 border=0
height=4></TD>
<TD BGCOLOR=#000000></TD>
</TR></TABLE>
<TABLE WIDTH="600" CELLSPACING="0" CELLPADDING=0 BORDER=0>
<TR>
<TD BGCOLOR=#000000 WIDTH="25"></TD>
<TD BGCOLOR=#22AAAA WIDTH="175">Product ID:</TD>
<TD Class=KeyValues WIDTH="400">40</TD>
<TD BGCOLOR=#000000 WIDTH="0"></TD>
</TR>
<TR>
<TD BGCOLOR=#000000></TD>
<TD BGCOLOR=RED >zzz</TD>
<TD BGCOLOR=RED >zzz</TD>
<TD BGCOLOR=#000000></TD>
</TR></TABLE>
<TABLE WIDTH="600" CELLSPACING="0" CELLPADDING=0 BORDER=0>
<TR>
<TD BGCOLOR=#000000 WIDTH="25"></TD>
<TD BGCOLOR=#22AAAA WIDTH="175">Product ID:</TD>
<TD Class=KeyValues WIDTH="400">40</TD>
<TD BGCOLOR=#000000 WIDTH="0"></TD>
</TR>
<TR>
<TD BGCOLOR=#000000></TD>
<TD BGCOLOR=RED COLSPAN="2"><IMG
src="../../images/layouts/0000000/0000001/ruler1.gif" width=575 border=0
height=4></TD>
<TD BGCOLOR=#000000></TD>
</TR></TABLE>
<TABLE WIDTH="600" CELLSPACING="0" CELLPADDING=0 BORDER=0>
<TR>
<TD BGCOLOR=#000000 WIDTH="25"></TD>
<TD BGCOLOR=#22AAAA WIDTH="175">Product ID:</TD>
<TD Class=KeyValues WIDTH="400">overiden with own style sheet</TD>
<TD BGCOLOR=#000000 WIDTH="0"></TD>
</TR>
<TR>
<TD BGCOLOR=#000000></TD>
<TD Class=HR COLSPAN="2"><IMG
src="../../images/layouts/0000000/0000001/ruler1.gif" width=575 border=0
height=4></TD>
<TD BGCOLOR=#000000></TD>
</TR></TABLE>
</body>
</html>
.