-6

幅を 100% に設定し、<body>幅を 900px に設定した場合。

これは私が得るものです:

    ___________
   _|my body  |_
  |_ My div    _|
    |my body  |
    |         |
4

1 に答える 1

0

これはあなたが達成しようとしていることと似ていますか?

http://jsfiddle.net/ha7fK/1/

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>

于 2012-12-01T16:10:50.117 に答える