table 水平居中

ie下:

body

{

text-align:center;

}

firfox下:

.demo

{

margin:0 auto;

}

ie,firfox兼容:

body

{

text-align:center;

}

.demo

{

margin:0 auto;

text-align:left;

}

code:

<html>

<body>

<div class="demo">

<table>...</table>

</div>

</body>

</html>

你可能感兴趣的:(table 水平居中)