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;
}
令整个网页绝对居中!
上一篇: PHP的SQL注入过程分析