我遇到了 html/css 的问题。
嗨有这个设计:
HHHHHHHHHH
CCCCCCCSSS
CCCCCCCSSS
CCCCCCCSSS
CCCCCCCSSS
FFFFFFFFFF
H 是我的页眉,F 页脚,C 内容和 S 我的侧边栏。
我已将页眉固定在顶部,将页脚固定在底部,因此无论我有多少内容,页眉和页脚总是会显示。
由于我的侧边栏只有少量数据,我也想修复它。我希望侧边栏保持在标题下方并且始终可见,即使内容太大并且我需要滚动到页面底部。
嗨有这个代码:
.container {
min-height:100%;
position:relative;
}
.header {
position: fixed;
top: 0;
background:#f1f1f1;
width: 100%;
margin: 0px auto;
}
.sidebar {
float: right;
width: 300px;
background-color: #FFF;
padding:10px;
padding-bottom: 100px;
padding-top: 50px;
}
.content {
width: 960px;
padding:10px;
padding-bottom: 100px;
padding-top: 50px;
margin-left: 100px;
}
.footer {
position:fixed;
bottom:0;
width:100%;
height:60px;
background:#f1f1f1;
text-align: center;
vertical-align: middle;
}
有任何想法吗?