如table
 ----------------------------
|    |      |       |      |
 ----------------------------
|    |      |       |      |
 ----------------------------
|    |      |       |      |
 ----------------------------
|    |      |       |      |
 ----------------------------然后实现的要求是
 ----------------------------
|                          |
 ----------------------------
|                          |
 ----------------------------
|                          |
 ----------------------------
|                          |
 ----------------------------也就是竖的线只有左右两条其他的不要
那么<table style+"???">
谢谢

解决方案 »

  1.   

    <title>无标题文档</title>
    <style type="text/css">
    /* CSS Document */
    .tablecss{
    border:#f1f1f1 solid 1px;
    }
    .tablecss td{
    border-bottom:#000000 dotted 1px;
    }</style>
    </head><body>
    <table width="782" border="0" cellspacing="0" cellpadding="0" class="tablecss">
      <tr>
        <td>1</td>
        <td>2</td>
        <td>3</td>
        <td>4</td>
      </tr>
      <tr>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
      </tr>  
    </table>