<table width="100%"  border="1" cellpadding="0" cellspacing="0"  id=table1 style="table-layout:fixed">
  <tr>
    <td  height="200" align="right" onmouseover="this.style.cursor='e-resize'">A</td>
    <td width="80" align="right" onmouseover="this.style.cursor='default'">B</td>
    <td align="right" onmouseover="this.style.cursor='hand'">C</td>
    <td width="378" align="center">&nbsp;</td>
  </tr>
</table>

解决方案 »

  1.   

    <table width="100%"  border="1" cellpadding="0" cellspacing="0" onmousedown=init() onmouseup=end() onmousemove=drag() id=table1 style="table-layout:fixed">
      <tr>
        <td  height="200" align="right" onmouseover="this.style.cursor='e-resize';" onmouseout="this.style.cursor='default';">A</td>
        <td width="80" align="right">B</td>
        <td align="right" onmouseover="this.style.cursor='move';" onmouseout="this.style.cursor='default';"> C</td>
        <td width="378" align="center">&nbsp;</td>
      </tr>
    </table>