当我将宽度设置为 100% 并将<body>
宽度设置为 900 像素时。
这就是我得到的:
___________
_|my body |_
|_ My div _|
|my body |
| |
这与您要完成的任务相似吗?
我在 jsfiddle 的演示中将宽度更改为 300px。只需更改300px
为900px
HTML
<body>
<div class="width900">
Width of 900px
</div>
<div class="widthfull">
<div class="text">
Width of 100%
</div>
</div>
<div class="width900">
Width of 900px
</div>
</body>
CSS
body {width:100%;}
.width900 {width:300px; background:#ccc; margin:auto;}
.widthfull {width:100%; background:#eee; margin:auto;}
.widthfull .text {width:300px; margin:auto;}
</p>