<style type="text/css">
<!--
.com {
align="center"
}-->
</style><table name="table1" class="com">
</table>

解决方案 »

  1.   

    关键是还要离顶10单位
    style="position:absolute;width:98;top:10px"
    然后居中
      

  2.   

    <style type="text/css">
    <!--
    .com {
    align="center"
    }-->
    </style>
    这是什么啊,
    因该是
    <style type="text/css">
    <!--
    .com {
    text-align:center;
    }-->
    </style>
      

  3.   

    <style type="text/css">
    <!--
    .com {
       top: 10px;
       text-align:center
    }-->
    </style><table name="table1" class="com">
    </table>
      

  4.   

    晕。 btut2004谢谢你的批评。。
      

  5.   

    <style>
    table
    {
        align:center;
    }
    </style>所有表格居中
      

  6.   

    有些属性不能些css里的,可以用expression进行控制的啦
      

  7.   

    可以参考http://www.blueidea.com/bbs/archivecontent.asp?id=434909http://www.yesky.com/SoftChannel/72351167954354176/20030714/1713928.shtml
    http://www.dalianit.com/edu/%7B78.85.108.54.79.104.62.62%7D.html
      

  8.   

    .commandBar
    {
    position:absolute;
    top:10px;
    left:expression(document.body.offsetWidth*0.01);
    width:98%;
    }