DIV+CSS布局问题 100%的页面上边固定高度下面div:height100%填充为左右结构左边固定宽度右边width:100%

2025-03-12 22:27:10
推荐回答(2个)
回答1:

#leftLink {
    width: 260px;
    bottom: 0px;
    top: 0px;
    background-color: #e6effb;
    border-left: 1px solid #c0d7f5;
    border-right: 1px solid #c0d7f5;
    position: absolute;
    left: 0px;
}
#rightContent {
    margin-left: 260px;
    overflow: hidden;
    padding: 20px;
}

回答2:

你能画个原型图看看吗?