4

我想创建这样的布局:

  1. 左栏(黄色):宽度 150px常量- 高度动态
  2. 中间列(天蓝色):宽度动态- 高度动态
  3. 右栏(绿色):宽度 150px常量- 高度动态
  4. 页脚(红色):宽度动态- 高度常数

我正在寻找纯 CSS 的解决方案。

jsFiddle 在这里

4

5 回答 5

5

http://fiddle.jshell.net/2bSaP/show/

HTML:

<div id="container">
    <div id="yellow"></div>
    <div id="blue"></div>
    <div id="green"></div>
    <div id="red"></div>
</div>

CSS:

body {
    margin: 0;
}

#yellow {
    background: yellow;
    position: absolute;
    width: 150px;
    top: 0;
    left: 0;
    bottom: 155px;
}

#blue {
    background: rgb(98, 196, 255);
    position: absolute;
    top: 0;
    right: 155px;
    left: 155px;
    bottom: 155px;
}

#green {
    background: green;
    position: absolute;
    width: 150px;
    top: 0;
    right: 0;
    bottom: 155px;
}

#red {
    background: brown;
    position: absolute;
    height: 150px;
    left: 0;
    right: 0;
    bottom: 0;
}
于 2012-07-08T06:36:40.520 回答
0

现在使用你忘记在你的css中position 定义position value

像这样

#blue{
position: absolute;
}
于 2012-07-06T05:30:52.567 回答
0

不确定这是否是您想要的,但我摆脱了所有这些高度规则#Blue,只是添加了height: 100%,然后给出#Red了更高的值z-index(例如 55)。

现在中心方块似乎总是蓝色的。

http://jsfiddle.net/qXKZh/38/

希望这可以帮助

于 2012-07-06T05:38:24.810 回答
0

我真的不确定您要完成什么。它应该看起来像 MusikAnimal 的 jsfiddle 的样子吗?

如果是这样,我会选择不同的结构(具有正确的高度和宽度......):

<div id="for3columns" style="height: 500px;">
  <div id="yellow_column" style="float: left; width: 20%; height: 100%"></div>
  <div id="blue_column" style="float: left; width: 60%; height: 100%"></div>
  <div id="green_column" style="float: left; width: 20%; height: 100%"></div>
</div>
<div id="lower_red" style="clear:both; width: 100%; height: 100px;"></div>
于 2012-07-07T14:33:01.573 回答
0

有点难以理解你的问题是什么,但从我收集的信息来看,我能够得到这个解决方案:Fiddle

HTML

<div class='container'>
    <div class='col col-left'></div>
    <div class='col col-mid'></div>
    <div class='col col-right'></div>
    <div class='col col-bottom'></div>
</div>​

CSS

.container {
    width: 960px;
    margin: 0 auto;
}

.col {
    margin: 0;
    padding: 0;
    float: left;
}

.col-left {
    width: 25%;
    height: 200px;
    background: #f90a7b;
}

.col-mid {
    width: 50%;
    height: 200px;
    background: #e3f606;
}

.col-right {
    width: 25%;
    height: 200px;     
    background: #46c704;
}

.col-bottom {
    width: 100%;
    height: 200px;
    background: #0654e0;
}​
于 2012-07-08T06:03:55.383 回答