欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

新手求救:为什么不能居中显示啊!_html/css_WEB-ITnose

程序员文章站 2022-06-06 08:18:00
...
CSS代码如下:

body{ margin:0; padding:0; text-align:center;}
div#heard{ background:url(images/hd.gif) no-repeat; height:132px;}
div#pagebody{ background:url(images/content.gif) no-repeat; height:538px; padding:0 15px; }
div#footer{ background:url(images/ft.gif) no-repeat; height:100px; padding-top:30px;}

HMTL如下:



实例








打开后是左对齐,哪边出错了!


回复讨论(解决方案)

* {
margin: 0 auto;
}

    实例

  body        {            text-align: center;        }