如何创建固定高度的第一列布局?我看到了一个 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;
}