幅を 100% に設定し、<body>
幅を 900px に設定した場合。
これは私が得るものです:
___________
_|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>