我想做这个简单的布局:
width = 200px
width = 400px
这是我的样本(但 col3' s宽度为100px )。所以问题是如何修复col3
的CSS以使其流畅但仍保留position:fixed
?
我的最后一个选择是使用jQuery。但除非布局真的有必要,否则我不想触摸它。
感谢。
答案 0 :(得分:2)
对于绝对/固定定位元素,宽度是左右的函数。因此,在第三列上设置left: 600px; right: 0;
,浏览器将确定宽度。这就对了。这是经过修改的CSS,对一致性几乎没有变化:
.col1 {
position: fixed;
top: 0;
bottom: 0;
left: 0;
width: 200px;
background: red;
}
.col2 {
margin-left: 200px;
width: 400px;
height: 100%;
background: green;
}
.col3 {
position: fixed;
top: 0;
bottom: 0;
left: 600px;
right: 0;
background: blue;
}
答案 1 :(得分:0)
可以使用float:left
或左列和中间列的绝对位置来设置,并将margin-left
设置为等于它们的组合宽度。
.col1 {
background: red;
float:left;
width: 200px;
height:100%
}
.col2 {
background: green;
float:left;
width: 400px;
height:100%
}
.col3 {
background: blue;
margin-left:600px;
}