This is the code I'm using:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
</head>
<body style="width:100%;" >
<table style="width:1024;overflow:hidden;">
<td style="min-width:1024px;color:blue;vertical-align:top;overflow:hidden;">
...
</td>
<td style="min-width:1024px;color:red;vertical-align:top;overflow:hidden;">
...
</td>
</table>
</body>
</html>
I am trying to hide the second td element with red color, even though I have already set overflow to hidden. How can I achieve this?
Thank you for your help.