2

我正在尝试在容器内从上到下垂直定位 DIV。容器应垂直限制为 500 像素。所有不符合此限制的 DIV 都应浮动到下一行。

<style>
#container {
    position:relative;
    background-color:red;
    max-width:500px;
    min-height:500px;
    }
#area {
    position:absolute;
    bottom: 0;
    background-color:yellow;
    margin:20px;
    width:100px;
    height:100px;

}
</style>

<div id="container">
    <div id="area1">area1</div>
    <div id="area2">area2</div>
    <div id="area3">area3</div>
    <div id="area4">area4</div>
    <div id="area5">area5</div>
    <div id="area6">area6</div>
</div>

我的刨结果应该是这样的:

    ---------------------------->
    | -------- --------
    | |Area 1| |Area 5|
    | -------- --------
    | -------- --------
max | |Area 2| |Area 6|
500 | -------- --------
 px | --------
    | |Area 3|   etc..
    | --------
    | --------             /\
    | |Area 4|   etc....... |
    | --------   
    --------------------------->

我的问题是:我做错了什么以及是否可以实施?谢谢!

4

3 回答 3

2

CSS 列起初似乎是一个很有前途的解决方案,但它们不会在添加或删除区域时自动调整容器的宽度。

我的建议是将 div 布局为水平而不是垂直堆叠,从右到左。这很容易实现float:right。完成后,您可以将整个容器旋转 90 度以获得等效的垂直布局。但是由于现在区域 div 的方向都将不正确,因此您还需要将这些 90 度朝相反的方向旋转回来。

像这样的东西:

#container {
  position:relative;
  background-color:red;
  max-width:500px;
  margin-left:-500px;
  max-height:500px;
  overflow:hidden;
  -webkit-transform:rotate(-90deg);
  -webkit-transform-origin:top right;
  -ms-transform:rotate(-90deg);
  -ms-transform-origin:top right;
  transform:rotate(-90deg);
  transform-origin:top right;
  padding:20px 0 0 20px;
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  box-sizing:border-box;
}
#area {
  background-color:yellow;
  margin:0 20px 20px 0;
  width:100px;
  height:100px;
  float:right;
  -webkit-transform:rotate(90deg);
  -ms-transform:rotate(90deg);
  transform:rotate(90deg);
}

小提琴示例

请注意容器上的负数margin-left,它会在旋转后调整位置 - 需要匹配容器“高度”(即max-width属性)。该max-height属性表示容器在被剪裁之前将达到的最大“宽度”。overflow:hidden需要强制容器增长以包含其浮动子元素。

另外,请注意,因为区域 div 现在是浮动的,所以它们之间的边距不会塌陷。解决此问题的一种方法是将边距限制为仅两侧(我使用了右侧和底部),然后通过在容器上使用box-sizing:border-box.

最后,在这个特定的示例中,区域 div 具有 1:1 的纵横比,这意味着我们不必担心在旋转后重新定位它们。如果它们的宽度和高度不同,事情会变得稍微复杂一些。

此解决方案不适用于旧版本的 IE,但它至少支持 IE9。

于 2013-05-01T12:38:41.977 回答
0

您可以使用 CSS 列执行此操作,例如在这个 jsfiddle 演示中,使用以下 CSS

     #container{
        position: relative;
        background-color: red;
        max-width: 500px;
        min-height: 500px;
        padding: 20px;

        -moz-box-sizing: border-box;
        box-sizing: border-box;

        -moz-column-width: 150px;
        -webkit-column-width: 150px;
        -o-column-width: 150px;
        column-width: 150px;
     }
     #area{
        background-color: yellow;
        display: inline-block;
        font: italic 45px/215px georgia;
        height: 215px;
        margin-bottom: 21px;
        text-align: center;
        width: 215px;
     }

演示中的尺寸已按比例缩小以适应较小的渲染帧尺寸。

毫无疑问,这在早于 10 版的 IE 版本中不起作用。您可能可以使用以下 ALA 页面中的技术使其在 IE 中运行。

于 2013-05-01T10:44:06.203 回答
-1

    #container {
      background-color: red;
      max-width: 330px;
      max-height: 300px;
      padding: 20px;
      overflow:auto;
    }

    .area {
      background-color: yellow;
      display: inline-block;
      height: 70px;
      margin-bottom: 21px;
      text-align: center;
      width: 70px;
    }

    .x {
      background-color: cyan;
      height: 30px;
      width: 90px;
    }

    .Z {
      background-color: grey;
      height: 300px;
      width: 190px;
    }
    <div id="container">
      <div class="area">area1</div>
      <div class="area">area2</div>
      <div class="area x">area3</div>
      <div class="area">area4</div>
      <div class="area x">area5</div>
      <div class="area Z">area6</div>
    </div>

于 2015-04-15T17:12:36.487 回答