【发布时间】:2012-11-09 16:02:23
【问题描述】:
如何创建固定高度的第一列布局? 我看到了一个 kevinrose.com 博客,我喜欢它,简单而干净的布局,我想使用该布局,所以我试图创建它,但我坚持这个固定高度,我可以轻松设置固定栏,如标题,但列,我不知道该怎么做 示例:
#sidebar
{
background-color: red;
height: 700px;
width: 100px;
float: left;
}
#article
{
background-color: blue;
height: 400px;
width: 200px;
float: left;
}
#like
{
background-color: green;
height: 100px;
width: 200px;
position: fixed;
float: left;
z-index:-5;
}
【问题讨论】:
标签: html css layout height fixed