<TABLE WIDTH=100 border=1><TR><TD WIDTH=100><div style="position:relative;left:71" >A</div></td></tr></table>

解决方案 »

  1.   

    你可以尝试用CSS样式来定位对象的位置
    <TABLE WIDTH=100 border=1><TR><TD WIDTH=100><div style="position:solute;left:71" >A</div></td></tr></table>
      

  2.   

    谢谢!请问
    position:relative;left:71

    position:solute;left:71
    有什么区别
      

  3.   

    static: Default. The element is positioned according to the normal flow of the page. The Top and Left attributes are ignored. If the object is anchored inline, which only happens in Microsoft Word, this value is used. 
    absolute: The element is positioned relative to the parent, using the Top and Left attributes. This value is used by Microsoft Word and Microsoft Excel floating objects, and Microsoft PowerPoint slides.  
    relative: The element is positioned according to the normal flow of the page, but the Top and Left attributes are used. The overlap of overlapping elements is governed by the Z-Index attribute. 
      

  4.   

    position:relative;left:71

    position:solute;left:71
    有什么区别position:solute;left:71
    ->
    position:absolute;  //这是绝对位置.不要用绝对位置.绝对位置是相对于body的位置
    你可以看一下,这样的效果.绝对位置.
    <TABLE WIDTH=100 border=1><TR><TD WIDTH=100><div style="position:absolute;left:71" >A</div></td></tr></table>相对位置.  相对位置,是相对于上一个元素的位置.就是相对td
    <TABLE WIDTH=100 border=1><TR><TD WIDTH=100><div style="position:relative;left:71" >A</div></td></tr></table>