我想创建这样的布局:
- 左栏(黄色):宽度 150px常量- 高度动态
- 中间列(天蓝色):宽度动态- 高度动态
- 右栏(绿色):宽度 150px常量- 高度动态
- 页脚(红色):宽度动态- 高度常数
我正在寻找纯 CSS 的解决方案。
我想创建这样的布局:
我正在寻找纯 CSS 的解决方案。
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;
}
现在使用你忘记在你的css中position
定义position value
像这样
#blue{
position: absolute;
}
不确定这是否是您想要的,但我摆脱了所有这些高度规则#Blue
,只是添加了height: 100%
,然后给出#Red
了更高的值z-index
(例如 55)。
现在中心方块似乎总是蓝色的。
希望这可以帮助
我真的不确定您要完成什么。它应该看起来像 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>
有点难以理解你的问题是什么,但从我收集的信息来看,我能够得到这个解决方案:Fiddle
<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>
.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;
}