div在不同浏览器中居中显示的问题

在firefox中用这样的css就可以使一个div居中显示:

<style>
div{
     margin: 0 auto;
}
</style>


但是在ie6里就不起作用了,后来发现需要在html文件头部加入下面这断代码就可以了

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">


分析原因可能是因为ie6默认不支持xhtml 1.0所以对于ie要显示的声明一下。

你可能感兴趣的:(浏览器,css,XHTML,IE,firefox)