w3school的文档中明确写到div的align属性不被赞成使用,那么我想达到相同的效果还有什么其它简便的方法吗?
仅仅用css添加text-align:center是不行的,火狐对这个属性的理解和IE对这个属性的理解完全不同,前者的理解是div内部的元素居中,后者的理解是div块居中
下面是我的测试代码:
<?xml version="1.0" encoding="UTF-8" ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <style type="text/css"> div.center { text-align:center; } </style> <title>center测试</title> </head> <body> <div class="center"> <table border="1"> <tr> <td>一</td> <td>二三</td> </tr> <tr> <td>四五六</td> <td>七八九十</td> </tr> </table> </div> </body></html>
http://w3help.org/zh-cn/causes/RT8003
div.center table{ margin:auto;}
这个是对居中DIV的子元素使用的
<?xml version="1.0" encoding="UTF-8" ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <style type="text/css"> * { margin: 0px auto; padding: 0px; } </style> <title>center测试</title> </head> <body> <div class="center"> <table border="1"> <tr> <td>一</td> <td>二三</td> </tr> <tr> <td>四五六</td> <td>七八九十</td> </tr> </table> </div> </body></html>
楼主,text-align 按字面理解为,文本-对齐,即设置对象中文本的对齐方式。
margin:0 auto; 对块级元素是起居中效果的,前提是得给元素定义一个width,不然的话起width默认是100%,就没有左右居中可言了。
1楼的链接很给力,仔细看看。
你搜索一下aliceui,有很多CSS解决方案,而且还是国产的(符合国人浏览习惯)
外面层用text-align:center后给内部表格加上display:inline-block;*display:inline;*zoom:1;样式试试