Center a website:网页居中

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

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

posted @ 2019-04-20 16:25  金中衣谷  阅读(229)  评论(0)    收藏  举报