我基本上想要一些看起来像这样的东西:
包装器为1000px,两个侧面空间为剩余总空间的一半.
一个例子可能是:
<div id="container"> <div id="content"></div></div>
然后CSS看起来像:
#container { width: 100%; /* Background properties go here. */} #content { margin: 0px auto; width: 1000px;}
将内容放在#content div的任一侧是不可能的.