使用CSS居中表(二)

来源:互联网 发布:淘宝武汉飞鱼 编辑:程序博客网 时间:2024/05/23 14:21

为了使表居中,需要设置margin属性,像下面这种方式:

<style type="text/css">table.center {    margin-left: auto;    margin-right: auto;}</style>

然后可以在表中这样使用

<table class="center">   ...</table>


0 0