当前位置: 代码迷 >> HTML/CSS >> 怎么用css让table居中
  详细解决方案

怎么用css让table居中

热度:105   发布时间:2012-09-12 09:21:30.0
如何用css让table居中?
<table align="center">
这样的写法可以,但我想用css控制的话,怎么办?

------解决方案--------------------
<style>
table#tb {margin:0 50%;} //根据宽度及表格宽度计算
</style>
<table id="tb" border="1" bordercolor="#00000">
<tr>
<td>table</td>
</tr>
</table>
------解决方案--------------------
HTML code
<style>
  Table{
  star:expression(this.align='center')
  }
  </style>
  <table   width=100   border><tr><td>ok</td></tr></table>
  <table   width=100   border><tr><td>ok</td></tr></table>

------解决方案--------------------
HTML code
<table style="margin:auto">
<tr>
<td>text</td>
</tr>
</table> 
  相关解决方案