CSS DIV中表格居中显示

  • Post author:
  • Post category:其他


将div的text-align设为center,然后将table的margin设为auto,即:

<div>

<table style=”margin:auto; width:750px;”>


</table>

</div>


这样在主流浏览器中都可以实现居中.

转载于:https://www.cnblogs.com/Bryran/p/3981392.html