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

Center a website:网页居中

程序员文章站 2022-11-27 15:35:10
inside the tags, using a "wrapper" div to control the whole section. HTML:
(content)
CSS: #wrapper { ... margin: 0 au ......

inside the <body> tags, using a "wrapper" div to control the whole section.

html:
<div id="wrapper">
(content)
</div>
css:
#wrapper {
...
margin: 0 auto;
}
令整个网页绝对居中!