<table frame=void>
这样就可以了!当然,如果你愿意,也可以单独设置CSS。

解决方案 »

  1.   

    <html><head>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
    <meta name="GENERATOR" content="Microsoft FrontPage 4.0">
    <meta name="ProgId" content="FrontPage.Editor.Document">
    <title>New Page 1</title>
    <style>
    .tdl{border-left:1 solid #ffffff}
    .tdr{border-right:1 solid #ffffff}
    .tdt{border-top:1 solid #ffffff}
    .tdb{border-bottom:1 solid #ffffff}
    .tdlt{border-left:1 solid #ffffff;border-top:1 solid #ffffff}
    .tdbl{border-bottom:1 solid #ffffff;border-left:1 solid #ffffff}
    .tdrt{border-right:1 solid #ffffff;border-top:1 solid #ffffff}
    .tdbr{border-right:1 solid #ffffff;border-bottom:1 solid #ffffff}
    </style>
    </head>
    <body><table border="1" width="100" height="100" cellspacing="0" cellpadding="0" style="border:1 solid #ffffff" bordercolor=#000000>
      <tr>
        <td width="33%" class="tdlt"> </td>
        <td width="33%" class="tdt"> </td>
        <td width="34%" class="tdrt"> </td>
      </tr>
      <tr>
        <td width="33%" class="tdl"> </td>
        <td width="33%"> </td>
        <td width="34%" class="tdr"> </td>
      </tr>
      <tr>
        <td width="33%" class="tdbl"> </td>
        <td width="33%" class="tdb"> </td>
        <td width="34%" class="tdbr"> </td>
      </tr>
    </table></body></html>
      

  2.   

    再告诉你一个非常不错的网页学习TABLE的FRAME、RULES参数和表格的其它一些技巧:
    http://www.blueidea.com/doc/webpage/html/200110/00000176.htm
      

  3.   

    只显示上边框 <table frame=above>
    只显示下边框 <table frame=below> 
    只显示左、右边框 <table frame=vsides>
    只显示上、下边框 <table frame=hsides>
    只显示左边框 <table frame=lhs>
    只显示右边框 <table frame=rhs>
    不显示任何边框 <table frame=void>