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;
}
令整个网页绝对居中!

猜你喜欢

转载自www.cnblogs.com/zhyblogs/p/10741404.html