Possible Duplicates:
Why are tables bad rather than css?
Why not use tables for layout in HTML?
What's wrong about creating templates with table?
i was just trying to help someone and i got one upvote followed by few downvotes because i suggested a solution with table: How do you select half the remaining width using css?
what i suggested was:
<html>
<head>
<title></title>
<style type="text/css">
TD.left
{
width: auto;
}
TD.main
{
width:1000px;
}
TD.right
{
width: auto;
}
</style>
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="left"> </td>
<td class="main"> </td>
<td class="right"> </td>
</tr>
</table>
</body>