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;
}
令整个网页绝对居中!
inside the <body> tags, using a "wrapper" div to control the whole section.
HTML:
<div id="wrapper">
(content)
</div>
CSS:
#wrapper {
...
margin: 0 auto;
}
令整个网页绝对居中!