0

我花了将近 2 天,不知道该怎么做。这是一些代码:

<div id='wrapper'>
  <div id='left'>
  </div
  <div id='middle'>
      <div id='centeredinmiddle'>
      </div>
  </div>
  <div id='right'>
  </div>
</div>

我需要的是:包装器垂直居中,左右可缩放让我们说每个窗口宽度的20%,中间静态宽度:700px,centeredinmiddle - 在中间水平居中。

我不确定它是否可行,但我希望它是可行的。

4

1 回答 1

0

http://jsfiddle.net/cJqAu/

更改浮动 div 的顺序 -->

<div id='wrapper'>
  <div id='left'>
      foo bar
  </div>
    <div id='right'>
    bar foo
  </div>
  <div id='middle'>
     <div id='centeredinmiddle'>
        lorem ipsum dolor sit amet and so on...
     </div>
  </div>
</div>

并在左右 div 中添加一些小的样式规则:

#wrapper
{
  width: 70%;
  margin-left: 15%;
  /*this is not a beautiful and nice attempt, but it works*/
}
#left
{
  float: left;
  width: 10%;
}
#right
{
 float: right;
 width: 10%;
}
#centeredinmiddle
{
  /*no need for further style rules if you nicely adjust the others ;)*/
}

只需调整包装器的宽度即可

于 2013-01-09T11:02:09.803 回答