.row {display:table-row}
.row div {display:table-cell}
.row .one {width:200px}
.row .two {width:200px}
.row .three {}
上面说一下上边各个CSS属性的意义:
1.dispaly:table让.equal层作为块级元素的表格来显示,也就是将显示成表格的样子
2.border-collapse:separate边框独立,就像表格没有合并单元格以前
3.display:table-row将.row作为表格行tr显示
4.display:table-cell将.row的下级div作为表格单元格td显示
使用border-spacing:10px主要是来区分几个盒子,因为IE下不能正常显示,但是在:Mozilla、Opera、Firefox、Chrome下都是可以的。
1、普通居中。
align="center"
<table align="center"><tr>
<td>商品名称</td>
<td>商品价格</td>
<td>商品描述</td>
<td>购买</td>
</tr>
</table>
2、css样式居中。
margin:0 auto
<style type="text/css">table1{
margin:0 auto/* 自动居中,不论王爷的大小 */
border:1/* 边框粗度 */
width:80%/* 宽度只占当前页面的80% */
}
</style>