我正在尝试将我的基本网页布局放在一起,但遇到了一些问题。有人可以帮我解决它。我对 CSS 的理解并不高明。
代码:http: //jsfiddle.net/HJLzt/
粘性页脚正在工作,我希望在页眉和页脚之间有一个页面左右的列。我不确定我这样做的方式是否正确。
在左右列和页眉和页脚之间我想放置内容。我该如何居中。我找不到合适的方法,因为总是有溢出,我希望它只在左右列之间移动,没有什么可以切断的。
谢谢您的帮助!
编辑:我已经更新了我的布局并使用了一些 jquery 来提供帮助。我知道我应该尝试让一切都在 css 中运行,但这似乎是不可能的。
也许我应该补充一点,我想要一个白板作为主题。我想要一个木制框架,所以侧边栏总是必须连接到页眉和页脚,因为顶部和底部框架穿过那里。
如果有人可以看看并告诉我这是否可以。
* { margin:0; padding:0; }
html, body, #wrap { height: 100%; }
body > #wrap {height: auto; min-height: 100%;}
#main { padding-bottom: 150px; } /* must be same height as the footer */
#main header{
height: 100px;
width: 100%;
background-color: #5d3be6;
}
footer{
position: relative;
margin-top: -150px; /* negative value of footer height */
height: 150px;
clear:both;
background-color: #afeba4;
}
/* CLEAR FIX*/
.clearfix:after {content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;}
.clearfix {display: inline-block;}
/* Hides from IE-mac \*/
* html .clearfix { height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */
#layout_left{
float: left;
width: 100px;
min-height: 100%;
height: 100%;
background-color: #f21ce7;
}
#layout_right{
float: right;
width: 100px;
min-height: 100%;
height: 100%;
background-color: #f21ce7;
}
#content_layout{
border-left: 100px solid #e4f662;
border-right: 100px solid #e4f662;
width: auto;
height: auto;
background-color: #c36161;
}
#content{
margin: auto;
width: 96%;
}