1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
<html> <head> <style type="text/css"> table{ width: 500px; } </style> </head> <body> <table class="grid" cellspacing="50" cellpadding="0" border> <col width="10%"/> <col width="1" span="2"/> <tbody> <tr><th class="top" colspan="3"> Some Text</th></tr> </tbody> </table> </body> </html>